-
Notifications
You must be signed in to change notification settings - Fork 15
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
Code actions with out null-ls #23
Comments
Unfortunately, that's not possible at the moment. The code actions use null-ls as the LSP client, without it, we would have to come up with a stand alone client. I know there are a few options out there to build generic language servers, but I haven't had the time to look into it. |
I found this one repository from you: |
No, you can see I'm installing null-ls here: https://github.com/davidmh/cspell-nvim-minimal-init/blob/main/minimal-init.lua#L33-L48 |
OK. Thanks a lot. |
I was able to make cspell-ls working on nvim, but the code looks somehow hacky + you need to modify extension and build locally neovim/nvim-lspconfig#1056 (comment) But the great thing about that - you will not depend on none-ls + performance much better |
That's great @quolpr, do you think your changes to I would definitely deprecate this plugin if we had a standalone LSP. |
Hey @davidmh! I opened issue here streetsidesoftware/vscode-spell-checker#3406 . I think cspell need native mode support, to avoid all hacks that I did. Let's see how discussion will go 🙂 |
Finally! I was able to make lsp config without modifying cspell. Here is gist with instruction https://gist.github.com/quolpr/2d9560c0ad5e77796a068061c8ea439c But still thinking about to add native mode to vscode-spell-checker |
Hi, How can i use code actions with out
null-ls
?I use
cmp
andnvim-lint
for compilation and linting.The text was updated successfully, but these errors were encountered: