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`.