This PR updates the autoOpenSignatureHelp function to behave as the builtin signatureHelp handler does (without printing an error message if there's no signature help available).
Note: we will have to merge changes manually if they change in upstream. Ideally, neovim's textDocument/signatureHelp would have a config.silent parameter so we could just use vim.lsp.with([...], { silent = true }) as our handler.
This PR updates the
autoOpenSignatureHelp
function to behave as the builtinsignatureHelp
handler does (without printing an error message if there's no signature help available).Note: we will have to merge changes manually if they change in upstream. Ideally, neovim's
textDocument/signatureHelp
would have aconfig.silent
parameter so we could just usevim.lsp.with([...], { silent = true })
as our handler.