133 lines
3.1 KiB
Lua
Raw Normal View History

2021-07-12 10:47:09 +02:00
local Config = require("persistence.config")
local uv = vim.uv or vim.loop
2021-07-02 08:55:37 +02:00
local M = {}
M._active = false
2021-07-02 08:55:37 +02:00
local e = vim.fn.fnameescape
function M.current()
local name = vim.fn.getcwd():gsub("[\\/:]+", "%%")
2024-07-06 22:00:20 +02:00
if Config.options.branch then
local branch = M.branch()
if branch and branch ~= "main" and branch ~= "master" then
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
function M.fire(event)
vim.api.nvim_exec_autocmds("User", {
pattern = "Persistence" .. event,
})
end
-- Check if a session is active
function M.active()
return M._active
end
2021-07-02 08:55:37 +02:00
function M.start()
M._active = true
vim.api.nvim_create_autocmd("VimLeavePre", {
group = vim.api.nvim_create_augroup("persistence", { clear = true }),
callback = function()
M.fire("SavePre")
2024-07-06 21:54:41 +02:00
if Config.options.need > 0 then
local bufs = vim.tbl_filter(function(b)
if vim.bo[b].buftype ~= "" or vim.bo[b].filetype == "gitcommit" or vim.bo[b].filetype == "gitrebase" then
return false
end
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
end
M.save()
M.fire("SavePost")
end,
})
2021-07-02 08:55:37 +02:00
end
function M.stop()
M._active = false
pcall(vim.api.nvim_del_augroup_by_name, "persistence")
2021-07-02 08:55:37 +02:00
end
function M.save()
vim.cmd("mks! " .. e(M.current()))
2021-07-02 08:55:37 +02:00
end
---@param opts? { last?: boolean }
function M.load(opts)
opts = opts or {}
local file = opts.last and M.last() or M.current()
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
---@return string[]
2021-07-02 08:55:37 +02:00
function M.list()
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
function M.select()
---@type { session: string, dir: string, branch?: string }[]
local items = {}
local have = {} ---@type table<string, boolean>
for _, session in ipairs(M.list()) do
if uv.fs_stat(session) then
local file = session:sub(#Config.options.dir + 1, -5)
local dir, branch = unpack(vim.split(file, "%%", { plain = true }))
dir = dir:gsub("%%", "/")
if not have[dir] then
have[dir] = true
items[#items + 1] = { session = session, dir = dir, branch = branch }
end
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
vim.fn.chdir(item.dir)
M.load()
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