From 6beda8c5de7228da6a87212b7d3dc0d064eb3631 Mon Sep 17 00:00:00 2001 From: chuyanlong Date: Thu, 4 Sep 2025 09:14:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=BF=AB=E6=8D=B7=E9=94=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/lazyvim/config/keymaps.lua | 3 --- lua/lazyvim/plugins/editor.lua | 1 - lua/lazyvim/plugins/lsp/keymaps.lua | 1 - 3 files changed, 5 deletions(-) diff --git a/lua/lazyvim/config/keymaps.lua b/lua/lazyvim/config/keymaps.lua index fbc7f5d1..5fc1f434 100644 --- a/lua/lazyvim/config/keymaps.lua +++ b/lua/lazyvim/config/keymaps.lua @@ -88,9 +88,6 @@ map("v", ">", ">gv") map("n", "gco", "oVcxnormal gccfxa", { desc = "Add Comment Below" }) map("n", "gcO", "OVcxnormal gccfxa", { desc = "Add Comment Above" }) --- lazy -map("n", "l", "Lazy", { desc = "Lazy" }) - -- new file map("n", "fn", "enew", { desc = "New File" }) diff --git a/lua/lazyvim/plugins/editor.lua b/lua/lazyvim/plugins/editor.lua index abdc03ac..f40f73af 100644 --- a/lua/lazyvim/plugins/editor.lua +++ b/lua/lazyvim/plugins/editor.lua @@ -64,7 +64,6 @@ return { { "gh", group = "hunks" }, { "q", group = "quit/session" }, { "s", group = "search" }, - { "p", group = "package", icon = { icon = "󰏔 ", color = "blue" } }, { "m", group = "wiki", icon = { icon = "󰖬 ", color = "cyan" } }, { "u", group = "ui", icon = { icon = "󰙵 ", color = "cyan" } }, { "x", group = "diagnostics/quickfix", icon = { icon = "󱖫 ", color = "green" } }, diff --git a/lua/lazyvim/plugins/lsp/keymaps.lua b/lua/lazyvim/plugins/lsp/keymaps.lua index 318ec911..48314508 100644 --- a/lua/lazyvim/plugins/lsp/keymaps.lua +++ b/lua/lazyvim/plugins/lsp/keymaps.lua @@ -21,7 +21,6 @@ function M.get() { "gD", vim.lsp.buf.declaration, desc = "Goto Declaration" }, { "K", function() return vim.lsp.buf.hover() end, desc = "Hover" }, { "gK", function() return vim.lsp.buf.signature_help() end, desc = "Signature Help", has = "signatureHelp" }, - { "", function() return vim.lsp.buf.signature_help() end, mode = "i", desc = "Signature Help", has = "signatureHelp" }, { "ca", vim.lsp.buf.code_action, desc = "Code Action", mode = { "n", "v" }, has = "codeAction" }, { "cc", vim.lsp.codelens.run, desc = "Run Codelens", mode = { "n", "v" }, has = "codeLens" }, { "cC", vim.lsp.codelens.refresh, desc = "Refresh & Display Codelens", mode = { "n" }, has = "codeLens" },