From ec3769338bca84354a4edb94c1fcf0cc7873115b Mon Sep 17 00:00:00 2001 From: Techno Duck Date: Mon, 11 Nov 2024 23:12:55 -0500 Subject: [PATCH] harpoon fix --- lua/technoduck/lazy_plugins/harpoon.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/technoduck/lazy_plugins/harpoon.lua b/lua/technoduck/lazy_plugins/harpoon.lua index de722e7..6399435 100644 --- a/lua/technoduck/lazy_plugins/harpoon.lua +++ b/lua/technoduck/lazy_plugins/harpoon.lua @@ -9,7 +9,7 @@ return { harpoon:setup() - vim.keymap.set("n", "a", function() harpoon:list():append() end) + vim.keymap.set("n", "a", function() harpoon:list():add() end) vim.keymap.set("n", "", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end) vim.keymap.set("n", "", function() harpoon:list():select(1) end)