Ekopalypse
Ekopalypse
@weirdalsuperfan >I guess that is somewhat helpful for understanding what I said about utf-16 Isn't that the whole reason for discussing something, to get a better understanding what needs to...
Afaik boost::python offers no possibility to create the pyi files automatically from the C++ sources. Another problem could be how to use PythonScript and where to place the resulting Npp.pyi...
but if you use e.g. a local Python installation and pyls, then the search path knows nothing about PythonScript directories.
Now I'm confused, PythonScript is a Notepad++ plugin and its only purpose is to be used with Notepad++. So... why would someone use VSC, for example, to write a script...
@chcg - thank you for your continued commitment to the PythonScript project. To create the stubs file, I use [this script](https://gist.github.com/Ekopalypse/1dbf1f635f9bb641768994605981d430). Without your recent changes, this would create an incorrect...
Here is a sample code that shows the effect of the missing _vinit function a bit more clearly. code for dll build: ~~~v // v -cc msvc -shared FILE_NAME module...
Hi, to create the DLL I used `v -cc msvc -shared test_dll.v` (-cc gcc/clang could also be used) and for the test application simply `v run test.v`.
> logs come in many formats 100% - please, no standard .log udl. @mkucmpro > I'm often finding myself installing Notepad++ from scratch in different machines Isn't this a question...
Hello, I can confirm that this is also happening to me – and to be honest, I'm a little confused as to why this is the case. Regarding what you...
The [specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_hover) clearly states that the order indicates the preferred format, and since NppLspClient sends “plaintext”, “markdown” the PHP language server sends plain text. ``` /** * Client supports the...