You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not getting any autocomplete when I use this plugin, but everything else seems to work (code actions, inline errors, etc.)
vscode has the same functionality but also have autocompletion working.
I see textDocument/completion responses coming through in my log when I type in nvim, so the LSP seems to be receiving requests and responding properly, they're just not showing up in neovim.
Running 0.8.3 nvim
The text was updated successfully, but these errors were encountered:
I think this is caused by Idris-LSP's requirement for the buffer to be saved to disk, not idris2-nvim.
It's not that auto-complete isn't working, it's that the LSP reads the data from the file, rather than the buffer, so it doesn't actually have access to what you are typing, and therefor can not suggest anything.
if you start typing replicate, it will not give completion suggestions. However, if you type repli, write to disk (:w) and then continue typing, it will give the suggestion.
Being able to handle files not on disk is planned for Idris2-LSP, but not currently present.
I'm not getting any autocomplete when I use this plugin, but everything else seems to work (code actions, inline errors, etc.)
vscode has the same functionality but also have autocompletion working.
I see textDocument/completion responses coming through in my log when I type in nvim, so the LSP seems to be receiving requests and responding properly, they're just not showing up in neovim.
Running 0.8.3 nvim
The text was updated successfully, but these errors were encountered: