Skip to content

Commit

Permalink
fix(harpoon): mapping overrides default window switching keybind (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
Subjective authored May 16, 2023
1 parent f8448cc commit 51df9c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/astrocommunity/motion/harpoon/harpoon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
{ "<C-j>", function() require("harpoon.ui").nav_prev() end, desc = "Goto previous mark" },
{ "<C-k>", function() require("harpoon.ui").nav_next() end, desc = "Goto next mark" },
{ "<C-p>", function() require("harpoon.ui").nav_prev() end, desc = "Goto previous mark" },
{ "<C-n>", function() require("harpoon.ui").nav_next() end, desc = "Goto next mark" },
{ prefix .. "m", "<cmd>Telescope harpoon marks<CR>", desc = "Show marks in Telescope" },
{
prefix .. "t",
Expand Down

0 comments on commit 51df9c1

Please sign in to comment.