fix: remove expand() as stdpath() expands itself (#50)

This commit is contained in:
Aaron
2024-06-11 20:53:08 -07:00
committed by GitHub
parent 5fe077056c
commit a2fd3d9965
3 changed files with 3 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ Persistence comes with the following defaults:
>lua
{
dir = vim.fn.expand(vim.fn.stdpath("state") .. "/sessions/"), -- directory where session files are saved
dir = 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