201 lines
5.1 KiB
Lua
201 lines
5.1 KiB
Lua
local utils = require("persisted.utils")
|
|
local config = require("persisted.config")
|
|
|
|
local M = {}
|
|
|
|
local e = vim.fn.fnameescape
|
|
local default_branch = "main"
|
|
|
|
---Setup the plugin's commands
|
|
---@return nil
|
|
local function setup_commands()
|
|
vim.cmd([[
|
|
command! SessionStart :lua require("persisted").start()
|
|
command! SessionStop :lua require("persisted").stop()
|
|
command! SessionSave :lua require("persisted").save()
|
|
command! SessionLoad :lua require("persisted").load()
|
|
command! SessionLoadLast :lua require("persisted").load({ last = true })
|
|
command! SessionDelete :lua require("persisted").delete()
|
|
command! SessionToggle :lua require("persisted").toggle()
|
|
]])
|
|
end
|
|
|
|
|
|
---Does the current working directory allow for the auto-saving and loading?
|
|
---@return boolean
|
|
local function allow_dir()
|
|
local allowed_dirs = config.options.allowed_dirs
|
|
|
|
if allowed_dirs == nil then
|
|
return true
|
|
end
|
|
return utils.dirs_match(vim.fn.getcwd(), allowed_dirs)
|
|
end
|
|
|
|
---Is the current working directory ignored for auto-saving and loading?
|
|
---@return boolean
|
|
local function ignore_dir()
|
|
local ignored_dirs = config.options.ignored_dirs
|
|
|
|
if ignored_dirs == nil then
|
|
return false
|
|
end
|
|
return utils.dirs_match(vim.fn.getcwd(), ignored_dirs)
|
|
end
|
|
|
|
---Get the session that was saved last
|
|
---@return string
|
|
local function get_last()
|
|
local sessions = vim.fn.glob(config.options.dir .. "*.vim", true, true)
|
|
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
|
|
|
|
---Get the current Git branch
|
|
---@return string
|
|
local function get_branch()
|
|
local git_enabled = (vim.fn.isdirectory(vim.fn.getcwd() .. "/.git") == 1)
|
|
|
|
if config.options.use_git_branch and git_enabled then
|
|
local branch = vim.api.nvim_exec([[!git rev-parse --abbrev-ref HEAD 2>/dev/null]], true)
|
|
|
|
-- The branch command returns two lines. We only need the second one
|
|
local lines = {}
|
|
for s in branch:gmatch("[^\r\n]+") do
|
|
table.insert(lines, "_" .. s)
|
|
end
|
|
|
|
return lines[#lines]:gsub("/", "%%")
|
|
end
|
|
|
|
return "_" .. default_branch
|
|
end
|
|
|
|
---Get the current session for the current working directory and git branch
|
|
---@return string
|
|
local function get_current()
|
|
local name = vim.fn.getcwd():gsub(utils.get_dir_pattern(), "%%")
|
|
return (config.options.dir or config.options.save_dir) .. name .. get_branch() .. ".vim"
|
|
end
|
|
|
|
---Setup the plugin based on the intersect of the default and the user's config
|
|
---@param opts table
|
|
---@return nil
|
|
function M.setup(opts)
|
|
config.setup(opts)
|
|
setup_commands()
|
|
if config.options.autoload and (allow_dir() and not ignore_dir()) and vim.fn.argc() == 0 then
|
|
M.load()
|
|
end
|
|
if
|
|
config.options.autosave
|
|
and (allow_dir() and not ignore_dir() and vim.g.persisting == nil)
|
|
and vim.fn.argc() == 0
|
|
then
|
|
M.start()
|
|
end
|
|
end
|
|
|
|
---Load a session
|
|
---@param opt table
|
|
---@return nil
|
|
function M.load(opt)
|
|
opt = opt or {}
|
|
local session = opt.last and get_last() or get_current()
|
|
|
|
if session and vim.fn.filereadable(session) ~= 0 then
|
|
local ok, result = pcall(vim.cmd, "source " .. e(session))
|
|
if not ok then
|
|
return utils.echoerr("Error loading the session! ", result)
|
|
end
|
|
config.options.after_source()
|
|
end
|
|
|
|
if config.options.autosave and (allow_dir() and not ignore_dir()) then
|
|
M.start()
|
|
end
|
|
end
|
|
|
|
---Start recording a session and write to disk on a specific autocommand
|
|
---@return nil
|
|
function M.start()
|
|
vim.cmd(string.format([[
|
|
augroup Persisted
|
|
autocmd!
|
|
autocmd %s * lua require("persisted").save()
|
|
augroup end
|
|
]], config.options.command))
|
|
vim.g.persisting = true
|
|
end
|
|
|
|
---Stop recording a session
|
|
---@return nil
|
|
function M.stop()
|
|
vim.cmd([[
|
|
autocmd! Persisted
|
|
augroup! Persisted
|
|
]])
|
|
vim.g.persisting = false
|
|
end
|
|
|
|
---Save the session to disk
|
|
---@return nil
|
|
function M.save()
|
|
config.options.before_save()
|
|
|
|
vim.cmd("mks! " .. e(get_current()))
|
|
vim.g.persisting = true
|
|
|
|
config.options.after_save()
|
|
end
|
|
|
|
---Delete the current session from disk
|
|
---@return nil
|
|
function M.delete()
|
|
local session = get_current()
|
|
if session and vim.loop.fs_stat(session) ~= 0 then
|
|
M.stop()
|
|
vim.fn.system("rm " .. e(session))
|
|
end
|
|
end
|
|
|
|
---Determines whether to load, start or stop a session
|
|
---@return function
|
|
function M.toggle()
|
|
if vim.g.persisting == nil then
|
|
return M.load()
|
|
end
|
|
if vim.g.persisting then
|
|
return M.stop()
|
|
end
|
|
return M.start()
|
|
end
|
|
|
|
---List all of the sessions in the session directory
|
|
---@return table
|
|
function M.list()
|
|
local save_dir = config.options.dir or config.options.save_dir
|
|
local session_files = vim.fn.glob(save_dir .. "*.vim", true, true)
|
|
|
|
local sessions = {}
|
|
for _, session in pairs(session_files) do
|
|
local session_name = session
|
|
:gsub(save_dir, "")
|
|
:gsub("%%", utils.get_dir_pattern())
|
|
:gsub(vim.fn.expand("~"), utils.get_dir_pattern())
|
|
:gsub("//", "")
|
|
|
|
table.insert(sessions, {
|
|
["name"] = utils.split_str(session_name, "_")[1],
|
|
["file_path"] = session,
|
|
["branch"] = utils.split_str(session_name, "_")[2]:gsub(".vim", ""),
|
|
})
|
|
end
|
|
|
|
return sessions
|
|
end
|
|
|
|
return M
|