-
Notifications
You must be signed in to change notification settings - Fork 26
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
signature-help completion not working with R languageserver #9
Comments
Also not working with Java language server: jdtls. |
I also have this issue with the R language server. lsp_signature.nvim is an alternative to mitigate this, but I have to tackle working between the two plugins then and I'd rather avoid that. Is there a way to open the R LSP signature info automatically? |
Same with rust-analyzer. Does |
You can trigger it manually with The weird thing about the R language server is that contrary to the behavior of for instance the lua language server or pyright the function only works if the cursor is inside the parenthesis of the function call whereas for the aforementioned language servers it works with the cursor on the parenthesis as well. See here: It might be an error on the side of the R language server, i.e. not triggering on a parenthesis isn't standard compliant or an edge case which isn't dealt with by this plugin. |
I have the same issue with java as well. Would be nice to have some solution here |
|
Any news on this? |
I'm trying to use automatic signature completion with the R language server
I'm using the kickstart.nvim init.lua but I've added
use 'hrsh7th/cmp-nvim-lsp-signature-help'
to'packer'.startup
and{ name = 'nvim_lsp_signature_help' },
as the first entry tosources
.Other sources are working properly and I can get manual signature help completion using
vim.lsp.buf.signature_help()
The text was updated successfully, but these errors were encountered: