From 7421e30704110aad59b17d86ace226a4018015d1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 5 Jan 2023 07:38:46 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/persistence.nvim.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/persistence.nvim.txt b/doc/persistence.nvim.txt index b900b2d..c0bd31e 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 January 04 +*persistence.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 January 05 ============================================================================== Table of Contents *persistence.nvim-table-of-contents* @@ -69,7 +69,7 @@ Persistence comes with the following defaults: >lua { - dir = vim.fn.expand(vim.fn.stdpath("config") .. "/sessions/"), -- directory where session files are saved + dir = vim.fn.expand(vim.fn.stdpath("state") .. "/sessions/"), -- directory where session files are saved options = { "buffers", "curdir", "tabpages", "winsize" }, -- sessionoptions used for saving } <