From 7dc0f1e1ea72387b209e3f818602684a6a3628a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BE=A4=E4=B8=BB=E5=86=92=E6=B3=A1?= <2586743928@qq.com> Date: Fri, 12 Jul 2024 01:21:46 +0800 Subject: [PATCH] remove the extra '[]' around y --- lua/lazyvim/plugins/lsp/keymaps.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/lsp/keymaps.lua b/lua/lazyvim/plugins/lsp/keymaps.lua index 12ae59be..aea6e689 100644 --- a/lua/lazyvim/plugins/lsp/keymaps.lua +++ b/lua/lazyvim/plugins/lsp/keymaps.lua @@ -17,7 +17,7 @@ function M.get() { "gd", vim.lsp.buf.definition(), desc = "Goto Definition", has = "definition" }, { "gr", vim.lsp.buf.references(), desc = "References", nowait = true }, { "gI", vim.lsp.buf.implementation(), desc = "Goto Implementation" }, - { "gy", vim.lsp.buf.type_definition(), desc = "Goto T[y]pe Definition" }, + { "gy", vim.lsp.buf.type_definition(), desc = "Goto Type Definition" }, { "gD", vim.lsp.buf.declaration, desc = "Goto Declaration" }, { "K", vim.lsp.buf.hover, desc = "Hover" }, { "gK", vim.lsp.buf.signature_help, desc = "Signature Help", has = "signatureHelp" },