2021-07-12 10:47:09 +02:00
|
|
|
local Config = require("persistence.config")
|
|
|
|
|
2024-07-06 21:23:56 +02:00
|
|
|
local uv = vim.uv or vim.loop
|
|
|
|
|
2021-07-02 08:55:37 +02:00
|
|
|
local M = {}
|
2024-07-07 07:02:32 +02:00
|
|
|
M._active = false
|
2021-07-02 08:55:37 +02:00
|
|
|
|
|
|
|
local e = vim.fn.fnameescape
|
|
|
|
|
2024-07-07 19:01:17 +02:00
|
|
|
---@param opts? {branch?: boolean}
|
|
|
|
function M.current(opts)
|
|
|
|
opts = opts or {}
|
2024-07-07 07:02:32 +02:00
|
|
|
local name = vim.fn.getcwd():gsub("[\\/:]+", "%%")
|
2024-07-07 19:01:17 +02:00
|
|
|
if Config.options.branch and opts.branch ~= false then
|
2024-07-06 22:00:20 +02:00
|
|
|
local branch = M.branch()
|
|
|
|
if branch and branch ~= "main" and branch ~= "master" then
|
2024-07-07 07:02:32 +02:00
|
|
|
name = name .. "%%" .. branch:gsub("[\\/:]+", "%%")
|
2024-07-06 22:00:20 +02:00
|
|
|
end
|
|
|
|
end
|
2021-07-12 10:47:09 +02:00
|
|
|
return Config.options.dir .. name .. ".vim"
|
2021-07-02 08:55:37 +02:00
|
|
|
end
|
|
|
|
|
2021-07-12 10:47:09 +02:00
|
|
|
function M.setup(opts)
|
|
|
|
Config.setup(opts)
|
|
|
|
M.start()
|
|
|
|
end
|
|
|
|
|
2024-07-06 21:23:56 +02:00
|
|
|
function M.fire(event)
|
|
|
|
vim.api.nvim_exec_autocmds("User", {
|
|
|
|
pattern = "Persistence" .. event,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2024-07-06 21:31:21 +02:00
|
|
|
-- Check if a session is active
|
|
|
|
function M.active()
|
2024-07-07 07:02:32 +02:00
|
|
|
return M._active
|
2024-07-06 21:31:21 +02:00
|
|
|
end
|
|
|
|
|
2021-07-02 08:55:37 +02:00
|
|
|
function M.start()
|
2024-07-07 07:02:32 +02:00
|
|
|
M._active = true
|
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()
|
2024-07-06 21:23:56 +02:00
|
|
|
M.fire("SavePre")
|
2024-07-06 21:54:41 +02:00
|
|
|
|
2024-07-06 21:41:58 +02:00
|
|
|
if Config.options.need > 0 then
|
2023-10-13 07:57:09 +02:00
|
|
|
local bufs = vim.tbl_filter(function(b)
|
2025-02-25 19:20:14 +01:00
|
|
|
if vim.bo[b].buftype ~= "" or vim.tbl_contains({ "gitcommit", "gitrebase", "jj" }, vim.bo[b].filetype) then
|
2024-01-19 16:14:29 +01:00
|
|
|
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())
|
2024-07-06 21:54:41 +02:00
|
|
|
if #bufs < Config.options.need then
|
|
|
|
return
|
|
|
|
end
|
2023-10-13 07:57:09 +02:00
|
|
|
end
|
|
|
|
|
2023-01-06 19:28:37 +01:00
|
|
|
M.save()
|
2024-07-06 21:23:56 +02:00
|
|
|
M.fire("SavePost")
|
2023-01-06 19:28:37 +01:00
|
|
|
end,
|
|
|
|
})
|
2021-07-02 08:55:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function M.stop()
|
2024-07-07 07:02:32 +02:00
|
|
|
M._active = false
|
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()
|
2024-07-07 07:02:32 +02:00
|
|
|
vim.cmd("mks! " .. e(M.current()))
|
2021-07-02 08:55:37 +02:00
|
|
|
end
|
|
|
|
|
2024-07-07 07:02:32 +02:00
|
|
|
---@param opts? { last?: boolean }
|
2024-07-06 21:23:56 +02:00
|
|
|
function M.load(opts)
|
|
|
|
opts = opts or {}
|
2024-07-07 19:01:17 +02:00
|
|
|
---@type string
|
|
|
|
local file
|
|
|
|
if opts.last then
|
|
|
|
file = M.last()
|
|
|
|
else
|
|
|
|
file = M.current()
|
|
|
|
if vim.fn.filereadable(file) == 0 then
|
|
|
|
file = M.current({ branch = false })
|
|
|
|
end
|
|
|
|
end
|
2024-07-06 21:23:56 +02:00
|
|
|
if file and vim.fn.filereadable(file) ~= 0 then
|
|
|
|
M.fire("LoadPre")
|
|
|
|
vim.cmd("silent! source " .. e(file))
|
|
|
|
M.fire("LoadPost")
|
2021-07-02 08:55:37 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-07-06 21:23:56 +02:00
|
|
|
---@return string[]
|
2021-07-02 08:55:37 +02:00
|
|
|
function M.list()
|
2024-07-06 21:23:56 +02:00
|
|
|
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]
|
2021-07-02 08:55:37 +02:00
|
|
|
end
|
|
|
|
|
2024-07-06 21:24:22 +02:00
|
|
|
function M.select()
|
2024-07-07 07:02:32 +02:00
|
|
|
---@type { session: string, dir: string, branch?: string }[]
|
2024-07-06 21:24:22 +02:00
|
|
|
local items = {}
|
2024-07-07 07:02:32 +02:00
|
|
|
local have = {} ---@type table<string, boolean>
|
2024-07-06 21:24:22 +02:00
|
|
|
for _, session in ipairs(M.list()) do
|
|
|
|
if uv.fs_stat(session) then
|
2024-07-07 07:02:32 +02:00
|
|
|
local file = session:sub(#Config.options.dir + 1, -5)
|
|
|
|
local dir, branch = unpack(vim.split(file, "%%", { plain = true }))
|
|
|
|
dir = dir:gsub("%%", "/")
|
2024-07-07 05:36:38 +02:00
|
|
|
if jit.os:find("Windows") then
|
|
|
|
dir = dir:gsub("^(%w)/", "%1:/")
|
|
|
|
end
|
2024-07-07 07:02:32 +02:00
|
|
|
if not have[dir] then
|
|
|
|
have[dir] = true
|
|
|
|
items[#items + 1] = { session = session, dir = dir, branch = branch }
|
|
|
|
end
|
2024-07-06 21:24:22 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
vim.ui.select(items, {
|
|
|
|
prompt = "Select a session: ",
|
|
|
|
format_item = function(item)
|
|
|
|
return vim.fn.fnamemodify(item.dir, ":p:~")
|
|
|
|
end,
|
|
|
|
}, function(item)
|
|
|
|
if item then
|
2024-07-07 07:02:32 +02:00
|
|
|
vim.fn.chdir(item.dir)
|
|
|
|
M.load()
|
2024-07-06 21:24:22 +02:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2024-07-06 22:00:20 +02:00
|
|
|
--- get current branch name
|
|
|
|
---@return string?
|
|
|
|
function M.branch()
|
2024-07-06 23:21:20 +02:00
|
|
|
if uv.fs_stat(".git") then
|
|
|
|
local ret = vim.fn.systemlist("git branch --show-current")[1]
|
|
|
|
return vim.v.shell_error == 0 and ret or nil
|
|
|
|
end
|
2024-07-06 22:00:20 +02:00
|
|
|
end
|
|
|
|
|
2021-07-02 08:55:37 +02:00
|
|
|
return M
|