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:
deathmaz 2023-10-09 21:28:59 +03:00
parent 21f4c47c68
commit 7fd419b323

View File

@ -15,7 +15,7 @@ local the_primeagen_harpoon = vim.api.nvim_create_augroup(
{ clear = true } { clear = true }
) )
vim.api.nvim_create_autocmd({ "BufLeave, VimLeave" }, { vim.api.nvim_create_autocmd({ "BufLeave", "VimLeave" }, {
callback = function() callback = function()
require("harpoon.mark").store_offset() require("harpoon.mark").store_offset()
end, end,