From 917da2edae474fa62dd9ae0fbbabb18a9bc52c81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Tue, 19 Mar 2024 13:00:46 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20config(nvim):=20forgot=20t?= =?UTF-8?q?o=20update=20one=20keymap=20for=20harpoon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nvim/lua/plugins/extras/editor/marks/harpoon-extended.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/extras/editor/marks/harpoon-extended.lua b/.config/nvim/lua/plugins/extras/editor/marks/harpoon-extended.lua index a2923ba0..6a887204 100644 --- a/.config/nvim/lua/plugins/extras/editor/marks/harpoon-extended.lua +++ b/.config/nvim/lua/plugins/extras/editor/marks/harpoon-extended.lua @@ -6,7 +6,7 @@ for i = 1, 9 do end table.insert(keys, { "ma", function() require("harpoon"):list():append() end, desc = "Add Mark" }) -table.insert(keys, { "m", function() require("harpoon").ui:toggle_quick_menu(require("harpoon"):list()) end, desc = "Marks" }) +table.insert(keys, { "mm", function() require("harpoon").ui:toggle_quick_menu(require("harpoon"):list()) end, desc = "Marks" }) table.insert(keys, { "mt", "Telescope harpoon marks", desc = "Marks (Telescope)" }) table.insert(keys, { "mc", function() require("harpoon"):list():clear() end, desc = "Clear all Marks" })