mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
changed append with add in harpoon2, because append was deprecates.
This commit is contained in:
parent
bb36f71b77
commit
3e5d935ba8
1 changed files with 3 additions and 3 deletions
|
|
@ -11,7 +11,7 @@ return {
|
||||||
{
|
{
|
||||||
"<leader>H",
|
"<leader>H",
|
||||||
function()
|
function()
|
||||||
require("harpoon"):list():append()
|
require("harpoon"):list():add()
|
||||||
end,
|
end,
|
||||||
desc = "Harpoon File",
|
desc = "Harpoon File",
|
||||||
},
|
},
|
||||||
|
|
@ -22,7 +22,7 @@ return {
|
||||||
harpoon.ui:toggle_quick_menu(harpoon:list())
|
harpoon.ui:toggle_quick_menu(harpoon:list())
|
||||||
end,
|
end,
|
||||||
desc = "Harpoon Quick Menu",
|
desc = "Harpoon Quick Menu",
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for i = 1, 5 do
|
for i = 1, 5 do
|
||||||
|
|
@ -35,5 +35,5 @@ return {
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
return keys
|
return keys
|
||||||
end
|
end,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue