mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
nvim/harpoon: remove bindings for insert mode
This commit is contained in:
parent
7df69fda69
commit
fc46ab47b9
1 changed files with 6 additions and 10 deletions
|
|
@ -6,15 +6,11 @@ harpoon:setup {
|
||||||
}
|
}
|
||||||
|
|
||||||
-- add and view
|
-- add and view
|
||||||
map({ "n", "i" }, "<A-c>", function() harpoon:list():add() end)
|
map("n", "<A-c>", function() harpoon:list():add() end)
|
||||||
map({ "n", "i" }, "<A-g>", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end)
|
map("n", "<A-g>", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end)
|
||||||
|
|
||||||
-- switch it up!
|
-- switch it up!
|
||||||
map({ "n", "i" }, "<A-h>", function() harpoon:list():select(1) end)
|
map("n", "<A-h>", function() harpoon:list():select(1) end)
|
||||||
map({ "n", "i" }, "<A-t>", function() harpoon:list():select(2) end)
|
map("n", "<A-t>", function() harpoon:list():select(2) end)
|
||||||
map({ "n", "i" }, "<A-n>", function() harpoon:list():select(3) end)
|
map("n", "<A-n>", function() harpoon:list():select(3) end)
|
||||||
map({ "n", "i" }, "<A-s>", function() harpoon:list():select(4) end)
|
map("n", "<A-s>", function() harpoon:list():select(4) end)
|
||||||
map({ "n", "i" }, "<A-m>", function() harpoon:list():select(5) end)
|
|
||||||
map({ "n", "i" }, "<A-w>", function() harpoon:list():select(6) end)
|
|
||||||
map({ "n", "i" }, "<A-v>", function() harpoon:list():select(7) end)
|
|
||||||
map({ "n", "i" }, "<A-z>", function() harpoon:list():select(8) end)
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue