I switched from vscode to neovim and am writing my own nvim config
Recently I realized that I'm missing suggestions in brackets looking like this:
I am using nvim-cmp
and having troubles with looking the function's docs
Could you help me please? Sorry for my poor english...
I want to see pop-up menu with arguments of function (or just documentation) while I am typing args
If I understand your problem correctly, you are able to see the documentation until you confirm a completion. After you confirm the completion your cursor looks like
print(|)
and the documentation popup goes away. Here's a link to the repo for a signature help source fornvim-cmp
made by the developer ofnvim-cmp
. Add that plugin with your package manager of choice and add{ name = 'nvim_lsp_signature_help' }
to your list of sources in yournvim-cmp
configuration: