From 6fd74b1a572e20c75fbc043e243e9cae985c14cb Mon Sep 17 00:00:00 2001 From: Josh <56745535+Subjective@users.noreply.github.com> Date: Wed, 21 Jun 2023 04:34:39 -0700 Subject: [PATCH 1/2] fix(grapple): incorrect command for cycle backward keybind --- lua/astrocommunity/motion/grapple-nvim/grapple.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/astrocommunity/motion/grapple-nvim/grapple.lua b/lua/astrocommunity/motion/grapple-nvim/grapple.lua index 64f8a9d54..7beae316e 100644 --- a/lua/astrocommunity/motion/grapple-nvim/grapple.lua +++ b/lua/astrocommunity/motion/grapple-nvim/grapple.lua @@ -12,6 +12,6 @@ return { { prefix .. "s", "GrapplePopup scopes", desc = "Select a project scope" }, { prefix .. "x", "GrappleReset", desc = "Clear tags from current project" }, { "", "GrappleCycle forward", desc = "Select next tag" }, - { "", "GrappleReset", desc = "Select previous tag" }, + { "", "GrappleCycle backward", desc = "Select previous tag" }, }, } From 7ebba1e4156cc50f6af8f832677f70171a78ee8f Mon Sep 17 00:00:00 2001 From: Josh <56745535+Subjective@users.noreply.github.com> Date: Wed, 21 Jun 2023 04:35:32 -0700 Subject: [PATCH 2/2] fix(grapple): cycle keybind overrides default window switching keybind --- lua/astrocommunity/motion/grapple-nvim/grapple.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/astrocommunity/motion/grapple-nvim/grapple.lua b/lua/astrocommunity/motion/grapple-nvim/grapple.lua index 7beae316e..b27b7e068 100644 --- a/lua/astrocommunity/motion/grapple-nvim/grapple.lua +++ b/lua/astrocommunity/motion/grapple-nvim/grapple.lua @@ -11,7 +11,7 @@ return { { prefix .. "e", "GrapplePopup tags", desc = "Select from tags" }, { prefix .. "s", "GrapplePopup scopes", desc = "Select a project scope" }, { prefix .. "x", "GrappleReset", desc = "Clear tags from current project" }, - { "", "GrappleCycle forward", desc = "Select next tag" }, - { "", "GrappleCycle backward", desc = "Select previous tag" }, + { "", "GrappleCycle forward", desc = "Select next tag" }, + { "", "GrappleCycle backward", desc = "Select previous tag" }, }, }