mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
Harpoon2: Use add to add the current buffer to the list instead of append
Use `add` to add the current buffer to the list instead of `append.` The plugin warns about the deprecation of the latter in favor of the previous one.
This commit is contained in:
parent
97480dc5d2
commit
927ff0f409
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ return {
|
|||
{
|
||||
"<leader>H",
|
||||
function()
|
||||
require("harpoon"):list():append()
|
||||
require("harpoon"):list():add()
|
||||
end,
|
||||
desc = "Harpoon File",
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue