Compare commits

..

1 Commits

Author SHA1 Message Date
github-actions[bot]
6f53a5f05d
chore(main): release 3.1.1 2025-02-25 18:17:30 +00:00
3 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,12 @@
# Changelog # Changelog
## [3.1.1](https://github.com/folke/persistence.nvim/compare/v3.1.0...v3.1.1) (2025-02-25)
### Bug Fixes
* **start:** don't count ft=jj buffers for persistence ([#90](https://github.com/folke/persistence.nvim/issues/90)) ([ae0d7e8](https://github.com/folke/persistence.nvim/commit/ae0d7e8e455d2ec043dc584e09301e1b4fcc42b6))
## [3.1.0](https://github.com/folke/persistence.nvim/compare/v3.0.1...v3.1.0) (2024-07-07) ## [3.1.0](https://github.com/folke/persistence.nvim/compare/v3.0.1...v3.1.0) (2024-07-07)

View File

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

View File

@ -45,7 +45,7 @@ function M.start()
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.tbl_contains({ "gitcommit", "gitrebase", "jj" }, vim.bo[b].filetype) then if vim.bo[b].buftype ~= "" or vim.bo[b].filetype == "gitcommit" or vim.bo[b].filetype == "gitrebase" or vim.bo[b].filetype == "jj" then
return false return false
end end
return vim.api.nvim_buf_get_name(b) ~= "" return vim.api.nvim_buf_get_name(b) ~= ""