vim/lsp: add mapping for signature help

This commit is contained in:
Fernando Schauenburg 2023-08-06 19:25:02 +02:00
parent d504ca3ffe
commit 4a444f61db

View file

@ -23,6 +23,7 @@ local config = function()
map('n', 'grr', vim.lsp.buf.rename, opts)
map('n', 'gt', vim.lsp.buf.type_definition, opts)
map('n', 'K', vim.lsp.buf.hover, opts)
map('i', '<c-l>', vim.lsp.buf.signature_help, opts)
end,
on_init = function(client, --[[init_result]]_)