-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is this a general purpose LSP or is it "tweaked and fitted" to sublime? :) #231
Comments
What do you mean? I don't think helix-editor uses Python as its plugin language. |
You probably ask in a wrong repository. What you are interested in is probably https://github.com/github/copilot.vim , which contains a LSP server written in JS. |
I had a feeling taking a fast read through that this may interface to the target editor through the LSP standard - since if I understand correctly the sublime user should install a LSP plugin, and I also see that zed can use this from their forum. If so, then any editor that has a LSP interface would be able to use this. Just curious if this is the case or if I misunderstood :) . |
Ok, thanks for the pointer - I had the feeling this other repo was fitted to nvim and not a general lsp, but I may have misunderstood :) |
The LSP server itself doesn't dedicate to any editor. It's just a JS script. This repository is a client of it as a bridge between the server and Sublime Text. |
Curious / trying to decide if I could / should use this solution in my editor (helix-editor).
Is this package a "general purpose" LSP that should work with any editor that implements LSP client functionality, or is it somehow tightly fitted for sublime? For example, do you think this would be useable with the helix editor? If so, I need to set up a small config that typically looks like (taking an example from another LSP I have in my config):
any recommendation on how I should set it up to make LSP-copilot work? :)
The text was updated successfully, but these errors were encountered: