fix(branch): escape branch name. Fixes #65

This commit is contained in:
Folke Lemaitre 2024-07-07 07:02:32 +02:00
parent 2c7d3eb6b8
commit 1565ca0af2
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040

View File

@ -3,17 +3,16 @@ local Config = require("persistence.config")
local uv = vim.uv or vim.loop local uv = vim.uv or vim.loop
local M = {} local M = {}
---@type string? M._active = false
M._current = nil
local e = vim.fn.fnameescape local e = vim.fn.fnameescape
function M.current() function M.current()
local name = vim.fn.getcwd():gsub("[\\/:]", "%%") local name = vim.fn.getcwd():gsub("[\\/:]+", "%%")
if Config.options.branch then if Config.options.branch then
local branch = M.branch() local branch = M.branch()
if branch and branch ~= "main" and branch ~= "master" then if branch and branch ~= "main" and branch ~= "master" then
name = name .. "-" .. branch name = name .. "%%" .. branch:gsub("[\\/:]+", "%%")
end end
end end
return Config.options.dir .. name .. ".vim" return Config.options.dir .. name .. ".vim"
@ -32,11 +31,11 @@ end
-- Check if a session is active -- Check if a session is active
function M.active() function M.active()
return M._current ~= nil return M._active
end end
function M.start() function M.start()
M._current = M.current() M._active = true
vim.api.nvim_create_autocmd("VimLeavePre", { vim.api.nvim_create_autocmd("VimLeavePre", {
group = vim.api.nvim_create_augroup("persistence", { clear = true }), group = vim.api.nvim_create_augroup("persistence", { clear = true }),
callback = function() callback = function()
@ -61,25 +60,22 @@ function M.start()
end end
function M.stop() function M.stop()
M._current = nil M._active = false
pcall(vim.api.nvim_del_augroup_by_name, "persistence") pcall(vim.api.nvim_del_augroup_by_name, "persistence")
end end
function M.save() function M.save()
vim.cmd("mks! " .. e(M._current or M.current())) vim.cmd("mks! " .. e(M.current()))
end end
---@param opts? { last?: boolean, file?: string } ---@param opts? { last?: boolean }
function M.load(opts) function M.load(opts)
opts = opts or {} opts = opts or {}
local file = opts.file or opts.last and M.last() or M.current() local file = opts.last and M.last() or M.current()
if file and vim.fn.filereadable(file) ~= 0 then if file and vim.fn.filereadable(file) ~= 0 then
M.fire("LoadPre") M.fire("LoadPre")
vim.cmd("silent! source " .. e(file)) vim.cmd("silent! source " .. e(file))
M.fire("LoadPost") M.fire("LoadPost")
if M._current then
M.start()
end
end end
end end
@ -97,12 +93,18 @@ function M.last()
end end
function M.select() function M.select()
---@type { session: string, dir: string }[] ---@type { session: string, dir: string, branch?: string }[]
local items = {} local items = {}
local have = {} ---@type table<string, boolean>
for _, session in ipairs(M.list()) do for _, session in ipairs(M.list()) do
if uv.fs_stat(session) then if uv.fs_stat(session) then
local dir = session:sub(#Config.options.dir + 1, -5):gsub("%%", "/") local file = session:sub(#Config.options.dir + 1, -5)
items[#items + 1] = { session = session, dir = dir } 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
end end
vim.ui.select(items, { vim.ui.select(items, {
@ -112,7 +114,8 @@ function M.select()
end, end,
}, function(item) }, function(item)
if item then if item then
M.load({ file = item.session }) vim.fn.chdir(item.dir)
M.load()
end end
end) end)
end end