Merge pull request #321 from deathmaz/fix/autocmd-events-format

fix: events no longer can be comma separated
This commit is contained in:
ThePrimeagen 2023-10-10 07:46:18 -06:00 committed by GitHub
commit c1aebbad9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,