I created with pythonnet a interface for python to my C# project. To work in python I need auto completion for the C# import. I would write out the required objects and functions manually. But how to import these to Jedi-Vim?
Asked
Active
Viewed 51 times
0
-
1In general you have to write stubs to make this kind of thing working. But I'm not sure I understand your question correctly. – Dave Halter Feb 03 '22 at 19:05
-
Hi, so the problem cause pythonnet and the clr.AddReference() it is impossible for Jedi to load any object or function names. So my idea is to create a dummy file for that. – Jules_96 Feb 04 '22 at 15:07
-
1These dummy files are usually called stubs and have a file ending of `.pyi`. You should probably look that up. – Dave Halter Feb 04 '22 at 22:33