diff --git a/doc/persistence.nvim.txt b/doc/persistence.nvim.txt index d5de8d9..fbe4603 100644 --- a/doc/persistence.nvim.txt +++ b/doc/persistence.nvim.txt @@ -1,4 +1,4 @@ -*persistence.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 May 22 +*persistence.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 October 13 ============================================================================== Table of Contents *persistence.nvim-table-of-contents* @@ -55,6 +55,7 @@ Persistence comes with the following defaults: dir = vim.fn.expand(vim.fn.stdpath("state") .. "/sessions/"), -- directory where session files are saved options = { "buffers", "curdir", "tabpages", "winsize" }, -- sessionoptions used for saving pre_save = nil, -- a function to call before saving the session + save_empty = false, -- don't save if there are no open file buffers } <