feat: sessions per branch. Closes #9
This commit is contained in:
parent
9c0e5227fa
commit
cd0054e6a4
@ -35,7 +35,10 @@ Persistence comes with the following defaults:
|
|||||||
```lua
|
```lua
|
||||||
{
|
{
|
||||||
dir = vim.fn.stdpath("state") .. "/sessions/", -- directory where session files are saved
|
dir = vim.fn.stdpath("state") .. "/sessions/", -- directory where session files are saved
|
||||||
save_empty = false, -- don't save if there are no open file buffers
|
-- minimum number of file buffers that need to be open to save
|
||||||
|
-- Set to 0 to always save
|
||||||
|
need = 1,
|
||||||
|
branch = true, -- use git branch to save session
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ local defaults = {
|
|||||||
-- minimum number of file buffers that need to be open to save
|
-- minimum number of file buffers that need to be open to save
|
||||||
-- Set to 0 to always save
|
-- Set to 0 to always save
|
||||||
need = 1,
|
need = 1,
|
||||||
|
branch = true, -- use git branch to save session
|
||||||
}
|
}
|
||||||
|
|
||||||
---@type Persistence.Config
|
---@type Persistence.Config
|
||||||
|
@ -10,6 +10,12 @@ 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
|
||||||
|
local branch = M.branch()
|
||||||
|
if branch and branch ~= "main" and branch ~= "master" then
|
||||||
|
name = name .. "-" .. branch
|
||||||
|
end
|
||||||
|
end
|
||||||
return Config.options.dir .. name .. ".vim"
|
return Config.options.dir .. name .. ".vim"
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -111,4 +117,10 @@ function M.select()
|
|||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--- get current branch name
|
||||||
|
---@return string?
|
||||||
|
function M.branch()
|
||||||
|
return vim.fn.systemlist("git branch --show-current")[1]
|
||||||
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
Loading…
x
Reference in New Issue
Block a user