2021-07-12 10:47:09 +02:00
|
|
|
local Config = require("persistence.config")
|
|
|
|
|
2021-07-02 08:55:37 +02:00
|
|
|
local M = {}
|
2023-10-15 21:40:15 +02:00
|
|
|
---@type string?
|
|
|
|
M.current = nil
|
2021-07-02 08:55:37 +02:00
|
|
|
|
|
|
|
local e = vim.fn.fnameescape
|
|
|
|
|
|
|
|
function M.get_current()
|
2021-10-22 17:25:52 +06:00
|
|
|
local pattern = "/"
|
2021-10-23 01:24:20 +07:00
|
|
|
if vim.fn.has("win32") == 1 then
|
2022-11-30 19:28:48 +01:00
|
|
|
pattern = "[\\:]"
|
2021-10-22 17:25:52 +06:00
|
|
|
end
|
|
|
|
local name = vim.fn.getcwd():gsub(pattern, "%%")
|
2021-07-12 10:47:09 +02:00
|
|
|
return Config.options.dir .. name .. ".vim"
|
2021-07-02 08:55:37 +02:00
|
|
|
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
|
|
|
|
|
2021-07-12 10:47:09 +02:00
|
|
|
function M.setup(opts)
|
|
|
|
Config.setup(opts)
|
|
|
|
M.start()
|
|
|
|
end
|
|
|
|
|
2021-07-02 08:55:37 +02:00
|
|
|
function M.start()
|
2023-10-15 21:40:15 +02:00
|
|
|
M.current = M.get_current()
|
2023-01-06 19:28:37 +01:00
|
|
|
vim.api.nvim_create_autocmd("VimLeavePre", {
|
|
|
|
group = vim.api.nvim_create_augroup("persistence", { clear = true }),
|
|
|
|
callback = function()
|
2023-02-28 09:05:58 +00:00
|
|
|
if Config.options.pre_save then
|
|
|
|
Config.options.pre_save()
|
|
|
|
end
|
|
|
|
|
2023-10-13 07:57:09 +02:00
|
|
|
if not Config.options.save_empty then
|
|
|
|
local bufs = vim.tbl_filter(function(b)
|
|
|
|
if vim.bo[b].buftype ~= "" then
|
|
|
|
return false
|
|
|
|
end
|
2023-10-13 08:47:05 +02:00
|
|
|
if vim.bo[b].filetype == "gitcommit" then
|
|
|
|
return false
|
|
|
|
end
|
2024-01-19 16:14:29 +01:00
|
|
|
if vim.bo[b].filetype == "gitrebase" then
|
|
|
|
return false
|
|
|
|
end
|
2023-10-13 07:57:09 +02:00
|
|
|
return vim.api.nvim_buf_get_name(b) ~= ""
|
|
|
|
end, vim.api.nvim_list_bufs())
|
|
|
|
if #bufs == 0 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-01-06 19:28:37 +01:00
|
|
|
M.save()
|
2024-05-16 20:03:16 +03:00
|
|
|
|
|
|
|
if type(Config.options.post_save) == "function" then
|
|
|
|
Config.options.post_save()
|
|
|
|
end
|
2023-01-06 19:28:37 +01:00
|
|
|
end,
|
|
|
|
})
|
2021-07-02 08:55:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function M.stop()
|
2023-10-15 21:40:15 +02:00
|
|
|
M.current = nil
|
2023-01-06 19:28:37 +01:00
|
|
|
pcall(vim.api.nvim_del_augroup_by_name, "persistence")
|
2021-07-02 08:55:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function M.save()
|
2021-07-12 10:47:09 +02:00
|
|
|
local tmp = vim.o.sessionoptions
|
|
|
|
vim.o.sessionoptions = table.concat(Config.options.options, ",")
|
2023-10-15 21:40:15 +02:00
|
|
|
vim.cmd("mks! " .. e(M.current or M.get_current()))
|
2021-07-12 10:47:09 +02:00
|
|
|
vim.o.sessionoptions = tmp
|
2021-07-02 08:55:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function M.load(opt)
|
|
|
|
opt = opt or {}
|
|
|
|
local sfile = opt.last and M.get_last() or M.get_current()
|
|
|
|
if sfile and vim.fn.filereadable(sfile) ~= 0 then
|
2024-05-16 20:03:16 +03:00
|
|
|
if type(Config.options.pre_load) == "function" then
|
|
|
|
Config.options.pre_load()
|
|
|
|
end
|
|
|
|
|
2022-11-30 19:28:48 +01:00
|
|
|
vim.cmd("silent! source " .. e(sfile))
|
2024-05-16 20:03:16 +03:00
|
|
|
|
|
|
|
if type(Config.options.post_load) == "function" then
|
|
|
|
Config.options.post_load()
|
|
|
|
end
|
2021-07-02 08:55:37 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function M.list()
|
2021-07-12 10:47:09 +02:00
|
|
|
return vim.fn.glob(Config.options.dir .. "*.vim", true, true)
|
2021-07-02 08:55:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return M
|