Compare commits

...

2 Commits

Author SHA1 Message Date
Folke Lemaitre
166a79a55b
refactor: cleanup 2025-02-25 19:20:14 +01:00
folke
3ae5cb9bc0 chore(build): auto-generate docs 2025-02-25 18:17:41 +00:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
*persistence.nvim.txt* For Neovim Last change: 2024 July 22
*persistence.nvim.txt* For Neovim Last change: 2025 February 25
==============================================================================
Table of Contents *persistence.nvim-table-of-contents*

View File

@ -45,7 +45,7 @@ function M.start()
if Config.options.need > 0 then
local bufs = vim.tbl_filter(function(b)
if vim.bo[b].buftype ~= "" or vim.bo[b].filetype == "gitcommit" or vim.bo[b].filetype == "gitrebase" or vim.bo[b].filetype == "jj" then
if vim.bo[b].buftype ~= "" or vim.tbl_contains({ "gitcommit", "gitrebase", "jj" }, vim.bo[b].filetype) then
return false
end
return vim.api.nvim_buf_get_name(b) ~= ""