|
@ -21,19 +21,19 @@ return { |
|
|
harpoon.ui:toggle_quick_menu(harpoon:list()) |
|
|
harpoon.ui:toggle_quick_menu(harpoon:list()) |
|
|
end, { desc = "Toggle quick menu for harpoon" }) |
|
|
end, { desc = "Toggle quick menu for harpoon" }) |
|
|
|
|
|
|
|
|
keymap.set("n", "<C-S-h>", function() |
|
|
|
|
|
|
|
|
keymap.set("n", "<A-h>", function() |
|
|
harpoon:list():select(1) |
|
|
harpoon:list():select(1) |
|
|
end, { desc = "Go to first harpoon file" }) |
|
|
end, { desc = "Go to first harpoon file" }) |
|
|
|
|
|
|
|
|
keymap.set("n", "<C-S-j>", function() |
|
|
|
|
|
|
|
|
keymap.set("n", "<A-j>", function() |
|
|
harpoon:list():select(2) |
|
|
harpoon:list():select(2) |
|
|
end, { desc = "Go to second harpoon file" }) |
|
|
end, { desc = "Go to second harpoon file" }) |
|
|
|
|
|
|
|
|
keymap.set("n", "<C-S-k>", function() |
|
|
|
|
|
|
|
|
keymap.set("n", "<A-k>", function() |
|
|
harpoon:list():select(3) |
|
|
harpoon:list():select(3) |
|
|
end, { desc = "Go to third harpoon file" }) |
|
|
end, { desc = "Go to third harpoon file" }) |
|
|
|
|
|
|
|
|
keymap.set("n", "<C-S-l>", function() |
|
|
|
|
|
|
|
|
keymap.set("n", "<A-l>", function() |
|
|
harpoon:list():select(4) |
|
|
harpoon:list():select(4) |
|
|
end, { desc = "Go to fourth harpoon file" }) |
|
|
end, { desc = "Go to fourth harpoon file" }) |
|
|
end, |
|
|
end, |
|
|