signature_help() keymap

This commit is contained in:
andrzej 2024-05-06 10:29:32 +02:00
parent e845ccea93
commit c7d38120a9
1 changed files with 2 additions and 0 deletions

View File

@ -69,6 +69,8 @@ return { -- LSP Configuration & Plugins
-- See `:help K` for why this keymap -- See `:help K` for why this keymap
map("K", vim.lsp.buf.hover, "Hover Documentation") map("K", vim.lsp.buf.hover, "Hover Documentation")
map("L", vim.lsp.buf.signature_help, "Signature Help")
-- WARN: This is not Goto Definition, this is Goto Declaration. -- WARN: This is not Goto Definition, this is Goto Declaration.
-- For example, in C this would take you to the header -- For example, in C this would take you to the header
map("gD", vim.lsp.buf.declaration, "[G]oto [D]eclaration") map("gD", vim.lsp.buf.declaration, "[G]oto [D]eclaration")