feat!: opts.need specifieds how many buffers should be open for saving. Replaces save_empty. Closes #19
This commit is contained in:
parent
f0ac0e981e
commit
7bb575517c
@ -3,7 +3,9 @@ local M = {}
|
|||||||
---@class Persistence.Config
|
---@class Persistence.Config
|
||||||
local defaults = {
|
local defaults = {
|
||||||
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,
|
||||||
}
|
}
|
||||||
|
|
||||||
---@type Persistence.Config
|
---@type Persistence.Config
|
||||||
|
@ -35,16 +35,14 @@ function M.start()
|
|||||||
group = vim.api.nvim_create_augroup("persistence", { clear = true }),
|
group = vim.api.nvim_create_augroup("persistence", { clear = true }),
|
||||||
callback = function()
|
callback = function()
|
||||||
M.fire("SavePre")
|
M.fire("SavePre")
|
||||||
if not Config.options.save_empty then
|
if Config.options.need > 0 then
|
||||||
local bufs = vim.tbl_filter(function(b)
|
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
|
if vim.bo[b].buftype ~= "" or vim.bo[b].filetype == "gitcommit" or vim.bo[b].filetype == "gitrebase" then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
return vim.api.nvim_buf_get_name(b) ~= ""
|
return vim.api.nvim_buf_get_name(b) ~= ""
|
||||||
end, vim.api.nvim_list_bufs())
|
end, vim.api.nvim_list_bufs())
|
||||||
if #bufs == 0 then
|
return #bufs >= Config.options.need
|
||||||
return
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
M.save()
|
M.save()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user