From 51df9c12fcec1f0721ecc54ebee34755b77f2e3b Mon Sep 17 00:00:00 2001 From: Joshua Yin <56745535+Subjective@users.noreply.github.com> Date: Tue, 16 May 2023 10:50:34 -0700 Subject: [PATCH] fix(harpoon): mapping overrides default window switching keybind (#203) --- lua/astrocommunity/motion/harpoon/harpoon.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/astrocommunity/motion/harpoon/harpoon.lua b/lua/astrocommunity/motion/harpoon/harpoon.lua index 72a8c6a50..fdc31da77 100644 --- a/lua/astrocommunity/motion/harpoon/harpoon.lua +++ b/lua/astrocommunity/motion/harpoon/harpoon.lua @@ -10,8 +10,8 @@ return { { prefix, desc = "Harpoon" }, { prefix .. "a", function() require("harpoon.mark").add_file() end, desc = "Add file" }, { prefix .. "e", function() require("harpoon.ui").toggle_quick_menu() end, desc = "Toggle quick menu" }, - { "", function() require("harpoon.ui").nav_prev() end, desc = "Goto previous mark" }, - { "", function() require("harpoon.ui").nav_next() end, desc = "Goto next mark" }, + { "", function() require("harpoon.ui").nav_prev() end, desc = "Goto previous mark" }, + { "", function() require("harpoon.ui").nav_next() end, desc = "Goto next mark" }, { prefix .. "m", "Telescope harpoon marks", desc = "Show marks in Telescope" }, { prefix .. "t",