chore(build): auto-generate vimdoc

This commit is contained in:
github-actions[bot] 2024-05-16 17:03:50 +00:00
parent 3d443bd0a7
commit 5fe077056c

View File

@ -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
}
<