feat: persistence.active. Check if a session saving is active

This commit is contained in:
Folke Lemaitre 2024-07-06 21:31:21 +02:00
parent 06e8ef93c8
commit f0ac0e981e
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040

View File

@ -24,6 +24,11 @@ function M.fire(event)
}) })
end end
-- Check if a session is active
function M.active()
return M._current ~= nil
end
function M.start() function M.start()
M._current = M.current() M._current = M.current()
vim.api.nvim_create_autocmd("VimLeavePre", { vim.api.nvim_create_autocmd("VimLeavePre", {