OmniSharp Not Working #5849
-
I'm attempting to start using Helix for the first time, and attempting to use it on my dotnet codebase. I've gotten Helix installed via choco, then downloaded OmniSharp (NOT the http version, the net6.0 version specifically), and added that to my path. When I open up Windows Terminal and I run Notice that Highlight and Textobject are both not checked. When I open a .cs file, I get this in the log file: However, if I run Windows Terminal as administrator, I get this running the But I get the same error messages in the log... If I try to use the non net6.0 version, I get absolutely nothing in the log when opening a .cs file. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I would suggest that you use either the precompiled binaries from the release page as the chocolatey and scoop package is quite outdated at the moment (it's still using I am not quite sure what your issue is as you are just saying that the LS is not working but not actually specifying what exactly is not working. You are mostly talking about highlight queries and textobjects afterwards so I assume that those are not working. Language servers only provide autocompletion, goto defintion etc. so the language server might work just fine for you. However it does seem that these is a problem with your tree sitter grammars (these provider syntax highlights and textobject queries). These are part of the runtime directory described in the README and should work out of the box if helix was installed correctly. Perhaphs just installing from scoop will fix the problem. |
Beta Was this translation helpful? Give feedback.
I would suggest that you use either the precompiled binaries from the release page as the chocolatey and scoop package is quite outdated at the moment (it's still using
22.08
instead of the newer22.12
release which came out 2 months ago). Helix is developing very quickly and using older versions you will miss out on many improvements, features and bugfixes. You can follow the instructions for linking the runtime directory the documentation for building from source (just that you can use the downloaded binaries instead of actually building from source): https://docs.helix-editor.com/install.htmlI am not quite sure what your issue is as you are just saying that the LS is not working but n…