chore(build): auto-generate vimdoc

This commit is contained in:
github-actions[bot] 2023-02-28 09:06:44 +00:00
parent f4bb0c5641
commit 5e47847262

View File

@ -1,38 +1,40 @@
*persistence.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 January 23
*persistence.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 February 28
==============================================================================
Table of Contents *persistence.nvim-table-of-contents*
1. Persistence |persistence.nvim-persistence|
- Features |persistence.nvim-features|
- Requirements |persistence.nvim-requirements|
- Installation |persistence.nvim-installation|
- Configuration |persistence.nvim-configuration|
- Usage |persistence.nvim-usage|
- Features |persistence.nvim-persistence-features|
- Requirements |persistence.nvim-persistence-requirements|
- Installation |persistence.nvim-persistence-installation|
- Configuration |persistence.nvim-persistence-configuration|
- Usage |persistence.nvim-persistence-usage|
==============================================================================
1. Persistence *persistence.nvim-persistence*
**Persistence** is a simple lua plugin for automated session management.
FEATURES *persistence.nvim-features*
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-requirements*
REQUIREMENTS *persistence.nvim-persistence-requirements*
- Neovim >= 0.7.2
INSTALLATION *persistence.nvim-installation*
INSTALLATION *persistence.nvim-persistence-installation*
Install the plugin with your preferred package manager:
PACKER <HTTPS://GITHUB.COM/WBTHOMASON/PACKER.NVIM> ~
PACKER ~
>lua
-- Lua
@ -47,7 +49,7 @@ PACKER <HTTPS://GITHUB.COM/WBTHOMASON/PACKER.NVIM> ~
<
VIM-PLUG <HTTPS://GITHUB.COM/JUNEGUNN/VIM-PLUG> ~
VIM-PLUG ~
>vim
" Vim Script
@ -63,7 +65,7 @@ VIM-PLUG <HTTPS://GITHUB.COM/JUNEGUNN/VIM-PLUG> ~
<
CONFIGURATION *persistence.nvim-configuration*
CONFIGURATION *persistence.nvim-persistence-configuration*
Persistence comes with the following defaults:
@ -76,7 +78,7 @@ Persistence comes with the following defaults:
<
USAGE *persistence.nvim-usage*
USAGE *persistence.nvim-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
@ -93,7 +95,6 @@ that does exactly that if you want.
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: