* feat(persistence): `pre_save` option to call before saving This commit adds the `pre_save` option, which is a `fun()|nil` that will be called (if present) before saving the current session. Use cases include filtering buffers, executing `User` autocmds, etc. * docs: `pre_save` option
19 lines
477 B
Lua
19 lines
477 B
Lua
local M = {}
|
|
|
|
---@class PersistenceOptions
|
|
---@field pre_save? fun()
|
|
local defaults = {
|
|
dir = vim.fn.expand(vim.fn.stdpath("state") .. "/sessions/"), -- directory where session files are saved
|
|
options = { "buffers", "curdir", "tabpages", "winsize" }, -- sessionoptions used for saving
|
|
}
|
|
|
|
---@type PersistenceOptions
|
|
M.options = {}
|
|
|
|
function M.setup(opts)
|
|
M.options = vim.tbl_deep_extend("force", {}, defaults, opts or {})
|
|
vim.fn.mkdir(M.options.dir, "p")
|
|
end
|
|
|
|
return M
|