From 21378c3260d345f7ecc79b4e8fbeb5f61a96951c Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Thu, 14 Sep 2023 17:54:15 -0500 Subject: [PATCH] sig docs --- lua/plugins/lsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index a18a42f..7646ceb 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -108,7 +108,7 @@ local on_attach = function(client, bufnr) -- See `:help K` for why this keymap nmap("K", vim.lsp.buf.hover, "Hover Documentation") - nmap("", vim.lsp.buf.signature_help, "Signature Documentation") + nmap("sd", vim.lsp.buf.signature_help, "Signature Documentation") -- Lesser used LSP functionality nmap("gD", vim.lsp.buf.declaration, "[G]oto [D]eclaration")