Skip to content

Commit

Permalink
fix(grapple): cycle keybind overrides default window switching keybind (
Browse files Browse the repository at this point in the history
  • Loading branch information
Subjective committed Jun 21, 2023
1 parent 53cea57 commit 40419cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/astrocommunity/motion/grapple-nvim/grapple.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ return {
{ prefix .. "e", "<cmd>GrapplePopup tags<CR>", desc = "Select from tags" },
{ prefix .. "s", "<cmd>GrapplePopup scopes<CR>", desc = "Select a project scope" },
{ prefix .. "x", "<cmd>GrappleReset<CR>", desc = "Clear tags from current project" },
{ "<C-k>", "<cmd>GrappleCycle forward<CR>", desc = "Select next tag" },
{ "<C-j>", "<cmd>GrappleReset<CR>", desc = "Select previous tag" },
{ "<C-n>", "<cmd>GrappleCycle forward<CR>", desc = "Select next tag" },
{ "<C-p>", "<cmd>GrappleCycle backward<CR>", desc = "Select previous tag" },
},
}

0 comments on commit 40419cb

Please sign in to comment.