diff --git a/README.md b/README.md index ef20707..0fa489b 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,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 } ``` diff --git a/doc/persistence.nvim.txt b/doc/persistence.nvim.txt index eace48b..44d3f67 100644 --- a/doc/persistence.nvim.txt +++ b/doc/persistence.nvim.txt @@ -71,6 +71,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 } < diff --git a/doc/persistence.txt b/doc/persistence.txt index a6467ac..acbe0d8 100644 --- a/doc/persistence.txt +++ b/doc/persistence.txt @@ -71,6 +71,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 } < diff --git a/lua/persistence/config.lua b/lua/persistence/config.lua index 4c584c9..41eb06e 100644 --- a/lua/persistence/config.lua +++ b/lua/persistence/config.lua @@ -1,6 +1,7 @@ local M = {} ---@class PersistenceOptions +---@field pre_save? fun() local 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 diff --git a/lua/persistence/init.lua b/lua/persistence/init.lua index 2398f66..7d01808 100644 --- a/lua/persistence/init.lua +++ b/lua/persistence/init.lua @@ -30,6 +30,10 @@ function M.start() vim.api.nvim_create_autocmd("VimLeavePre", { group = vim.api.nvim_create_augroup("persistence", { clear = true }), callback = function() + if Config.options.pre_save then + Config.options.pre_save() + end + M.save() end, })