fix: opts.need

This commit is contained in:
Folke Lemaitre 2024-07-06 21:54:41 +02:00
parent 7bb575517c
commit 9c0e5227fa
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040

View File

@ -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()