diff --git a/doc/persistence.nvim.txt b/doc/persistence.nvim.txt index 9bbf0e0..29d0015 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: 2024 January 19 +*persistence.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 May 16 ============================================================================== Table of Contents *persistence.nvim-table-of-contents* @@ -55,7 +55,10 @@ 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 + post_save = nil, -- a function to call after saving the session save_empty = false, -- don't save if there are no open file buffers + pre_load = nil, -- a function to call before loading the session + post_load = nil, -- a function to call after loading the session } <