8 Commits

Author SHA1 Message Date
21f55da0d3 chore(main): release 1.2.0 (#33)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-10-13 07:58:56 +02:00
878c3b32d9 chore(build): auto-generate vimdoc 2023-10-13 05:57:50 +00:00
e9afeaf3a7 feat: don't save the session when no files are open (save_empty = false) 2023-10-13 07:57:09 +02:00
4b8051c01f chore(build): auto-generate vimdoc 2023-05-22 14:39:07 +00:00
7b86ec2430 docs: lazy install 2023-05-22 16:38:25 +02:00
c814fae5c3 chore: update templates 2023-03-19 21:15:43 +01:00
4d2857b647 chore(build): auto-generate vimdoc 2023-03-19 19:37:23 +00:00
74475d1f7d chore: update templates 2023-03-19 20:36:39 +01:00
8 changed files with 42 additions and 149 deletions

View File

@ -16,7 +16,7 @@ body:
required: true
- label: I have searched the existing issues of persistence.nvim
required: true
- label: I have searched the exsiting issues of plugins related to this issue
- label: I have searched the existing issues of plugins related to this issue
required: true
- type: input
attributes:
@ -59,6 +59,7 @@ body:
value: |
-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name

View File

@ -15,8 +15,12 @@ jobs:
- name: Install Neovim
shell: bash
run: |
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.deb -O /tmp/nvim.deb
sudo dpkg -i /tmp/nvim.deb
mkdir -p /tmp/nvim
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage -O /tmp/nvim/nvim.appimage
cd /tmp/nvim
chmod a+x ./nvim.appimage
./nvim.appimage --appimage-extract
echo "/tmp/nvim/squashfs-root/usr/bin/" >> $GITHUB_PATH
- name: Run Tests
run: |
nvim --version

View File

@ -1,5 +1,12 @@
# Changelog
## [1.2.0](https://github.com/folke/persistence.nvim/compare/v1.1.0...v1.2.0) (2023-10-13)
### Features
* don't save the session when no files are open (save_empty = false) ([e9afeaf](https://github.com/folke/persistence.nvim/commit/e9afeaf3a7bb645ca73980cd13048c48c292500c))
## [1.1.0](https://github.com/folke/persistence.nvim/compare/v1.0.1...v1.1.0) (2023-02-28)

View File

@ -15,33 +15,17 @@
Install the plugin with your preferred package manager:
### [packer](https://github.com/wbthomason/packer.nvim)
### [folke](https://github.com/folke/lazy.nvim)
```lua
-- Lua
use({
{
"folke/persistence.nvim",
event = "BufReadPre", -- this will only start session saving when an actual file was opened
module = "persistence",
config = function()
require("persistence").setup()
end,
})
```
### [vim-plug](https://github.com/junegunn/vim-plug)
```vim
" Vim Script
Plug 'folke/persistence.nvim'
lua << EOF
require("persistence").setup {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
opts = {
-- add any custom options here
}
}
EOF
```
## ⚙️ Configuration
@ -53,6 +37,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
}
```

View File

@ -1,4 +1,4 @@
*persistence.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 February 28
*persistence.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 October 13
==============================================================================
Table of Contents *persistence.nvim-table-of-contents*
@ -18,14 +18,12 @@ Table of Contents *persistence.nvim-table-of-contents*
FEATURES *persistence.nvim-persistence-features*
- automatically saves the active session under `~/.local/state/nvim/sessions` on exit
- simple API to restore the current or last session
REQUIREMENTS *persistence.nvim-persistence-requirements*
- Neovim >= 0.7.2
@ -34,34 +32,17 @@ INSTALLATION *persistence.nvim-persistence-installation*
Install the plugin with your preferred package manager:
PACKER ~
FOLKE ~
>lua
-- Lua
use({
{
"folke/persistence.nvim",
event = "BufReadPre", -- this will only start session saving when an actual file was opened
module = "persistence",
config = function()
require("persistence").setup()
end,
})
<
VIM-PLUG ~
>vim
" Vim Script
Plug 'folke/persistence.nvim'
lua << EOF
require("persistence").setup {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
opts = {
-- add any custom options here
}
}
EOF
<
@ -74,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
}
<

View File

@ -1,99 +0,0 @@
*persistence.txt* For NVIM v0.8.0 Last change: 2023 January 04
==============================================================================
Table of Contents *persistence-table-of-contents*
1. 💾 Persistence |persistence-💾-persistence|
- ✨ Features |persistence-✨-features|
- ⚡️ Requirements |persistence-⚡️-requirements|
- 📦 Installation |persistence-📦-installation|
- ⚙️ Configuration |persistence-⚙️-configuration|
- 🚀 Usage |persistence-🚀-usage|
==============================================================================
1. 💾 Persistence *persistence-💾-persistence*
**Persistence** is a simple lua plugin for automated session management.
✨ FEATURES *persistence-✨-features*
- automatically saves the active session under `.config/nvim/sessions` on exit
- simple API to restore the current or last session
⚡️ REQUIREMENTS *persistence-⚡️-requirements*
- Neovim >= 0.5.0
📦 INSTALLATION *persistence-📦-installation*
Install the plugin with your preferred package manager:
PACKER <HTTPS://GITHUB.COM/WBTHOMASON/PACKER.NVIM> ~
>
-- Lua
use({
"folke/persistence.nvim",
event = "BufReadPre", -- this will only start session saving when an actual file was opened
module = "persistence",
config = function()
require("persistence").setup()
end,
})
<
VIM-PLUG <HTTPS://GITHUB.COM/JUNEGUNN/VIM-PLUG> ~
>
" Vim Script
Plug 'folke/persistence.nvim'
lua << EOF
require("persistence").setup {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
EOF
<
⚙️ CONFIGURATION *persistence-⚙️-configuration*
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
}
<
🚀 USAGE *persistence-🚀-usage*
**Persistence** works well with plugins like `startify` or `dashboard`. It will
never restore a session automatically, but you can of course write an autocmd
that does exactly that if you want.
>
-- restore the session for the current directory
vim.api.nvim_set_keymap("n", "<leader>qs", [[<cmd>lua require("persistence").load()<cr>]], {})
-- restore the last session
vim.api.nvim_set_keymap("n", "<leader>ql", [[<cmd>lua require("persistence").load({ last = true })<cr>]], {})
-- stop Persistence => session won't be saved on exit
vim.api.nvim_set_keymap("n", "<leader>qd", [[<cmd>lua require("persistence").stop()<cr>]], {})
<
Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>
vim:tw=78:ts=8:noet:ft=help:norl:

View File

@ -4,7 +4,8 @@ local M = {}
---@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
options = { "buffers", "curdir", "tabpages", "winsize", "skiprtp" }, -- sessionoptions used for saving
save_empty = false, -- don't save if there are no open file buffers
}
---@type PersistenceOptions

View File

@ -34,6 +34,18 @@ function M.start()
Config.options.pre_save()
end
if not Config.options.save_empty then
local bufs = vim.tbl_filter(function(b)
if vim.bo[b].buftype ~= "" then
return false
end
return vim.api.nvim_buf_get_name(b) ~= ""
end, vim.api.nvim_list_bufs())
if #bufs == 0 then
return
end
end
M.save()
end,
})