From 878c3b32d94c0f31b7032a60cb4a79e1fc24f9a3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 13 Oct 2023 05:57:50 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/persistence.nvim.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 } <