diff --git a/nvim/after/plugin/binds.lua b/nvim/after/plugin/binds.lua index ea9d877..2c6066c 100644 --- a/nvim/after/plugin/binds.lua +++ b/nvim/after/plugin/binds.lua @@ -11,7 +11,7 @@ local harpoon = require("harpoon") -- REQUIRED harpoon:setup() -- REQUIRED -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) vim.keymap.set("n", "", function() harpoon:list():select(2) end)