feat!: removed load_pre/load_post/save_pre/save_post in favor of events. Check the readme

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

View File

@ -1,51 +1,38 @@
local Config = require("persistence.config") local Config = require("persistence.config")
local uv = vim.uv or vim.loop
local M = {} local M = {}
---@type string? ---@type string?
M.current = nil M._current = nil
local e = vim.fn.fnameescape local e = vim.fn.fnameescape
function M.get_current() function M.current()
local pattern = "/" local name = vim.fn.getcwd():gsub("[\\/:]", "%%")
if vim.fn.has("win32") == 1 then
pattern = "[\\:]"
end
local name = vim.fn.getcwd():gsub(pattern, "%%")
return Config.options.dir .. name .. ".vim" return Config.options.dir .. name .. ".vim"
end end
function M.get_last()
local sessions = M.list()
table.sort(sessions, function(a, b)
return vim.loop.fs_stat(a).mtime.sec > vim.loop.fs_stat(b).mtime.sec
end)
return sessions[1]
end
function M.setup(opts) function M.setup(opts)
Config.setup(opts) Config.setup(opts)
M.start() M.start()
end end
function M.fire(event)
vim.api.nvim_exec_autocmds("User", {
pattern = "Persistence" .. event,
})
end
function M.start() function M.start()
M.current = M.get_current() M._current = M.current()
vim.api.nvim_create_autocmd("VimLeavePre", { vim.api.nvim_create_autocmd("VimLeavePre", {
group = vim.api.nvim_create_augroup("persistence", { clear = true }), group = vim.api.nvim_create_augroup("persistence", { clear = true }),
callback = function() callback = function()
if Config.options.pre_save then M.fire("SavePre")
Config.options.pre_save()
end
if not Config.options.save_empty then if not Config.options.save_empty then
local bufs = vim.tbl_filter(function(b) local bufs = vim.tbl_filter(function(b)
if vim.bo[b].buftype ~= "" then if vim.bo[b].buftype ~= "" or vim.bo[b].filetype == "gitcommit" or vim.bo[b].filetype == "gitrebase" then
return false
end
if vim.bo[b].filetype == "gitcommit" then
return false
end
if vim.bo[b].filetype == "gitrebase" then
return false return false
end end
return vim.api.nvim_buf_get_name(b) ~= "" return vim.api.nvim_buf_get_name(b) ~= ""
@ -56,16 +43,13 @@ function M.start()
end end
M.save() M.save()
M.fire("SavePost")
if type(Config.options.post_save) == "function" then
Config.options.post_save()
end
end, end,
}) })
end end
function M.stop() function M.stop()
M.current = nil M._current = nil
pcall(vim.api.nvim_del_augroup_by_name, "persistence") pcall(vim.api.nvim_del_augroup_by_name, "persistence")
end end
@ -73,24 +57,31 @@ function M.save()
vim.cmd("mks! " .. e(M._current or M.current())) vim.cmd("mks! " .. e(M._current or M.current()))
end end
function M.load(opt) ---@param opts? { last?: boolean, file?: string }
opt = opt or {} function M.load(opts)
local sfile = opt.last and M.get_last() or M.get_current() opts = opts or {}
if sfile and vim.fn.filereadable(sfile) ~= 0 then local file = opts.file or opts.last and M.last() or M.current()
if type(Config.options.pre_load) == "function" then if file and vim.fn.filereadable(file) ~= 0 then
Config.options.pre_load() M.fire("LoadPre")
end vim.cmd("silent! source " .. e(file))
M.fire("LoadPost")
vim.cmd("silent! source " .. e(sfile)) if M._current then
M.start()
if type(Config.options.post_load) == "function" then
Config.options.post_load()
end end
end end
end end
---@return string[]
function M.list() function M.list()
return vim.fn.glob(Config.options.dir .. "*.vim", true, true) local sessions = vim.fn.glob(Config.options.dir .. "*.vim", true, true)
table.sort(sessions, function(a, b)
return uv.fs_stat(a).mtime.sec > uv.fs_stat(b).mtime.sec
end)
return sessions
end
function M.last()
return M.list()[1]
end end
return M return M