Skip to content

Commit

Permalink
fix: harpoon keys (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xricksanchez committed Apr 18, 2023
1 parent 4d23683 commit 8b2d491
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" },
{ prefix .. "h", function() require("harpoon.ui").nav_next() end, desc = "Goto previous mark" },
{ prefix .. "l", function() require("harpoon.ui").nav_prev() end, desc = "Goto next mark" },
{ "<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" },
{ prefix .. "m", "<cmd>Telescope harpoon marks<CR>", desc = "Show marks in Telescope" },
{
prefix .. "t",
Expand Down

0 comments on commit 8b2d491

Please sign in to comment.