From e5c633d8c9a1ed80c4c214b8a791ddebb6f673d7 Mon Sep 17 00:00:00 2001 From: Joshua Yin <56745535+Subjective@users.noreply.github.com> Date: Mon, 15 May 2023 18:34:18 -0700 Subject: [PATCH] fix(harpoon): mapping overrides default window switching keybind --- 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",