molsonkiko

Results 140 comments of molsonkiko

Thanks for creating this extension, Kapil! I've never made a NPP extension before, but I'm in the process of trying to implement various features of this extension in C#. I...

Thanks for the thoughtful response, @Gitoffthelawn ! I will keep that in mind for programming in general, and this project in particular. I am in the process of trying to...

Hi amid0, I'm getting the same error as you, but it's definitely not related to Newtonsoft.Json or any specific details of your code. I get a similar error whenever there...

So I have a hacky but functional solution if you need NaN or infinity in your code: generate it at runtime in such a way that the compiler doesn't get...

[IlRepack](https://github.com/gluck/il-repack) bills itself as a good alternative, and it has been updated as recently as April 2022. No idea if it's compatible with .NET 4.0 though. I haven't done too...

The key here would definitely be storing the dictionary in a [trie data structure](https://en.wikipedia.org/wiki/Trie) and pre-selecting all possible auto-completions using the trie before passing the list into Scintilla's [AutoCShow](https://www.scintilla.org/ScintillaDoc.html#SCI_AUTOCSHOW) method....

My autocompletion thing with PythonScript is implemented [here](https://github.com/molsonkiko/dictautocomp) if people are interested. This can provide some of the desired functionality discussed above. At present *it cannot properly parse a Hunspell...

![image](https://user-images.githubusercontent.com/46202915/228731533-1f5b2599-71c2-4746-b520-e01a8f6eac33.png) Not a problem for me on 8.5.1 or 8.4.9.

Yes On Sat, Feb 17, 2024, 11:55 PM chcg ***@***.***> wrote: > @molsonkiko Seems this PR includes #14732 > . Is > this correct? > > — > Reply to...

One thing I should warn you of, regarding my fix in NppCSharpPluginPack - it introduces some weird behavior that you may not want, discussed [in this README section](https://github.com/molsonkiko/NppCSharpPluginPack/blob/main/docs/README.md#registering-and-unregistering-forms-with-nppm_modelessdialog). None of...