mirror of
https://github.com/ThePrimeagen/harpoon.git
synced 2025-07-13 17:40:25 +00:00
fix: events no longer can be comma separated
After https://github.com/neovim/neovim/pull/25523 the comma separated events are not valid any more and will throw error
This commit is contained in:
parent
21f4c47c68
commit
7fd419b323
@ -15,7 +15,7 @@ local the_primeagen_harpoon = vim.api.nvim_create_augroup(
|
||||
{ clear = true }
|
||||
)
|
||||
|
||||
vim.api.nvim_create_autocmd({ "BufLeave, VimLeave" }, {
|
||||
vim.api.nvim_create_autocmd({ "BufLeave", "VimLeave" }, {
|
||||
callback = function()
|
||||
require("harpoon.mark").store_offset()
|
||||
end,
|
||||
|
Loading…
x
Reference in New Issue
Block a user