fix: opts.need
This commit is contained in:
parent
7bb575517c
commit
9c0e5227fa
@ -35,6 +35,7 @@ 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 Config.options.need > 0 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
|
||||||
@ -42,7 +43,9 @@ function M.start()
|
|||||||
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())
|
||||||
return #bufs >= Config.options.need
|
if #bufs < Config.options.need then
|
||||||
|
return
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
M.save()
|
M.save()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user