patch-2024/08/22
This commit is contained in:
parent
84ea367081
commit
4b0e638557
2 changed files with 43 additions and 11 deletions
|
|
@ -26,6 +26,18 @@ return {
|
|||
vim.keymap.set('n', '<leader>4', function()
|
||||
harpoon:list():select(4)
|
||||
end)
|
||||
vim.keymap.set('n', '<leader>5', function()
|
||||
harpoon:list():select(5)
|
||||
end)
|
||||
vim.keymap.set('n', '<leader>6', function()
|
||||
harpoon:list():select(6)
|
||||
end)
|
||||
vim.keymap.set('n', '<leader>7', function()
|
||||
harpoon:list():select(7)
|
||||
end)
|
||||
vim.keymap.set('n', '<leader>8', function()
|
||||
harpoon:list():select(8)
|
||||
end)
|
||||
vim.keymap.set('n', '<leader><C-h>', function()
|
||||
harpoon:list():replace_at(1)
|
||||
end)
|
||||
|
|
@ -38,5 +50,17 @@ return {
|
|||
vim.keymap.set('n', '<leader><C-l>', function()
|
||||
harpoon:list():replace_at(4)
|
||||
end)
|
||||
vim.keymap.set('n', '<leader><C-n>', function()
|
||||
harpoon:list():replace_at(5)
|
||||
end)
|
||||
vim.keymap.set('n', '<leader><C-m>', function()
|
||||
harpoon:list():replace_at(6)
|
||||
end)
|
||||
vim.keymap.set('n', '<leader><C-,>', function()
|
||||
harpoon:list():replace_at(7)
|
||||
end)
|
||||
vim.keymap.set('n', '<leader><C-.>', function()
|
||||
harpoon:list():replace_at(8)
|
||||
end)
|
||||
end,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue