-
Notifications
You must be signed in to change notification settings - Fork 0
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
lsp-client-features does not mention vim.lsp.completion.enable #1
Comments
It is there. Completion side effects. In the opt-in features section. lsp-zero-docs/content/blog/lsp-client-features.md Lines 68 to 86 in e99e304
I think is fine the way it is. The old post on github.io has too many details. Over the years I've found people get overwhelmed pretty easily. The new one on lsp-zero's site only has the chunks of code most people care about. |
You're right. I think I had too many tabs open and one of your pages didn't have a mention of completion where I woul've expected it. It's somewhat dizzying to compare and contrast to make sure I didn't miss anything. As you say, this is likely fine for more of your readers since they'll just read the one page they landed on and it will generally contain something useful. But, even so, on [the page I mentioned]((
vim.lsp.completion.enable() . That could perhaps use a backreference, as in: you can use this if you're on v0.10, for v0.11 vim.lsp.completion is the more complete solution with builtin snippet support.
Similarly, https://vonheikemen.github.io/devlog/tools/neovim-lsp-client-guide/ mentions a homegrown v0.10 version of tab completion before mentioning I think it'd be clearer in both posts to first present the v0.11 version, and then follow up with a fallback for v0.10 or lower. Anyway, that's just my two cents. Thanks for the posts. |
I don't think about it like that. The default behavior in |
OK sure, tab-completion can be an enhancement. fwiw, I just set a manual trigger like this: -- Trigger lsp completion manually using Ctrl + Space
vim.keymap.set('i', '<C-Space>', '<cmd>lua vim.lsp.completion.trigger()<cr>') Do you know if there is any difference between |
Somewhat relatedly, I notice: vim.opt.completeopt = {'menu', 'menuone', 'noselect', 'noinsert'} I've been making use of |
Right now they are the same.
And by the way, I think
I haven't tried myself. Will have to use it for a while to see how it works. Thank you for mention it. |
I found
lsp-zero-docs/content/blog/lsp-client-features.md
Line 166 in e99e304
Given that you mention on this page that this deals with Neovim v0.11 features, I would've expected a mention of
vim.lsp.completion.enable
. The "Simple tab completion" header seems like a v0.10 holdover. I know you know of this, since later I found https://vonheikemen.github.io/devlog/tools/neovim-lsp-client-guide/. Maybe one page should reference the others? There seems to be some duplication.Thanks for writing these articles, they're quite helpful.
The text was updated successfully, but these errors were encountered: