-
Notifications
You must be signed in to change notification settings - Fork 52
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
Filtering certain source results #20
Comments
I guess you are using null-ls.nvim. It's completion feature sometimes suggest false positve candidates. |
I will seek assistance over there! |
In my case, it was the fact that I had the "spell" source enabled through null-ls which was producing those suggestions. Turning that off (at least in the file types where I don't want it) sorted my issues. |
Take this javascript source: import { html, render } from 'lit-html';
render(html`
<p>I'm a little teapot</p>
`, document.body); With the cursor on the line below the I would like the ability to filter lsp snippets by treesitter context. Could |
suggests text which are anoying in coding context. See hrsh7th/cmp-nvim-lsp#20 for more info on the issue
suggests text which are anoying in coding context. See hrsh7th/cmp-nvim-lsp#20 for more info on the issue
suggests text which are anoying in coding context. See hrsh7th/cmp-nvim-lsp#20 for more info on the issue
https://www.reddit.com/r/neovim/comments/o5siul/is_there_a_preferred_way_to_disable_lsp/
I am basically trying to do what the OP in the above post is. However I wish to do that for all servers and not only lua.
I want to filter out the text type completions coming from the server.
The text was updated successfully, but these errors were encountered: