From 4580398c3445d99d1c1238c040cf01eb924b009c Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 10 Feb 2023 13:06:35 +0100 Subject: [PATCH] fix(nvim): wrong lua function call for Harpoon --- nvim/lua/plugins/harpoon.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/plugins/harpoon.lua b/nvim/lua/plugins/harpoon.lua index bb1b5b8..2d13e31 100644 --- a/nvim/lua/plugins/harpoon.lua +++ b/nvim/lua/plugins/harpoon.lua @@ -5,7 +5,7 @@ return { dependencies = "nvim-telescope/telescope.nvim", -- stylua: ignore keys = { - { "a", function() require("harpoon.ui").add_file() end, desc = "Harpoon Add File" }, + { "a", function() require("harpoon.mark").add_file() end, desc = "Harpoon Add File" }, { ";", function() require("harpoon.ui").toggle_quick_menu() end, desc = "Harpoon Toggle Quickmenu" }, { "1", function() require("harpoon.ui").nav_file(1) end, desc = "Harpoon Buffer 1" }, { "2", function() require("harpoon.ui").nav_file(2) end, desc = "Harpoon Buffer 2" },