fix(lsp): incorrect g goto capitalization (#3950)

This commit is contained in:
Jabriel 2023-03-20 12:25:59 +08:00 committed by GitHub
parent d559dfc1cd
commit f64294f768
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,8 +102,8 @@ return {
buffer_mappings = {
normal_mode = {
["K"] = { "<cmd>lua vim.lsp.buf.hover()<cr>", "Show hover" },
["gd"] = { "<cmd>lua vim.lsp.buf.definition()<cr>", "Goto Definition" },
["gD"] = { "<cmd>lua vim.lsp.buf.declaration()<cr>", "Goto declaration" },
["gd"] = { "<cmd>lua vim.lsp.buf.definition()<cr>", "Goto definition" },
["gD"] = { "<cmd>lua vim.lsp.buf.declaration()<cr>", "Goto Declaration" },
["gr"] = { "<cmd>lua vim.lsp.buf.references()<cr>", "Goto references" },
["gI"] = { "<cmd>lua vim.lsp.buf.implementation()<cr>", "Goto Implementation" },
["gs"] = { "<cmd>lua vim.lsp.buf.signature_help()<cr>", "show signature help" },