This commit is contained in:
RingOfStorms (Joshua Bell) 2023-09-14 17:54:15 -05:00
parent 29a1ad229f
commit 21378c3260

View file

@ -108,7 +108,7 @@ local on_attach = function(client, bufnr)
-- See `:help K` for why this keymap -- See `:help K` for why this keymap
nmap("K", vim.lsp.buf.hover, "Hover Documentation") nmap("K", vim.lsp.buf.hover, "Hover Documentation")
nmap("<C-k>", vim.lsp.buf.signature_help, "Signature Documentation") nmap("<leader>sd", vim.lsp.buf.signature_help, "Signature Documentation")
-- Lesser used LSP functionality -- Lesser used LSP functionality
nmap("gD", vim.lsp.buf.declaration, "[G]oto [D]eclaration") nmap("gD", vim.lsp.buf.declaration, "[G]oto [D]eclaration")