You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe this question has been asked before, but would you have any instructions for how I can build omnisharp-vim manually on my computer?
I would like to add some functionality such as GotoTypeDefinition, but I would like to do it the right way, by adding tests to util.py. But I cannot find any instructions for how to build the Python project.
Thank you,
-Dan
The text was updated successfully, but these errors were encountered:
Hi @ofer987, good idea to add a GotoTypeDefinition endpoint, that'll be useful, after it was added to omnisharp-roslyn last year (OmniSharp/omnisharp-roslyn#2315).
This project doesn't need to be built. Both vimscript and python are interpreted, there is no compile step.
But more importantly, the python we have is essentially obsolete. A few years ago we added the omnisharp-vim stdio integration with the server, as an improvement and simplification to our previous http integration. The http integration uses python for server communication but the stdio integration doesn't: it is pure vimscript and is much faster and more robust.
Since then, a lot of new functionality like test runners and semantic highlighting have only been added to the stdio integration.
So my recommendation would be to ignore the python/http integration entirely and simply add functionality to the stdio side.
Hi,
Maybe this question has been asked before, but would you have any instructions for how I can build omnisharp-vim manually on my computer?
I would like to add some functionality such as
GotoTypeDefinition
, but I would like to do it the right way, by adding tests to util.py. But I cannot find any instructions for how to build the Python project.Thank you,
-Dan
The text was updated successfully, but these errors were encountered: