chore(build): auto-generate vimdoc

This commit is contained in:
github-actions[bot] 2024-03-28 11:16:10 +00:00
parent f61ca6ec70
commit ba58b87ed9
1 changed files with 41 additions and 43 deletions

View File

@ -1,4 +1,4 @@
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 March 27 *lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 March 28
============================================================================== ==============================================================================
Table of Contents *lazy.nvim-table-of-contents* Table of Contents *lazy.nvim-table-of-contents*
@ -20,6 +20,7 @@ Table of Contents *lazy.nvim-table-of-contents*
- Highlight Groups |lazy.nvim-lazy.nvim-highlight-groups| - Highlight Groups |lazy.nvim-lazy.nvim-highlight-groups|
- Plugin Authors |lazy.nvim-lazy.nvim-plugin-authors| - Plugin Authors |lazy.nvim-lazy.nvim-plugin-authors|
- Other Neovim Plugin Managers in Lua|lazy.nvim-lazy.nvim-other-neovim-plugin-managers-in-lua| - Other Neovim Plugin Managers in Lua|lazy.nvim-lazy.nvim-other-neovim-plugin-managers-in-lua|
2. Links |lazy.nvim-links|
============================================================================== ==============================================================================
1. lazy.nvim *lazy.nvim-lazy.nvim* 1. lazy.nvim *lazy.nvim-lazy.nvim*
@ -614,9 +615,9 @@ enabled with `config.checker.enabled = true`.
Any operation can be started from the UI, with a sub command or an API Any operation can be started from the UI, with a sub command or an API
function: function:
--------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------
Command Lua Description Command Lua Description
------------------------- -------------------------------- ---------------------- ----------------- ------------------------- -------------------------------- -----------------------
:Lazy build {plugins} require("lazy").build(opts) Rebuild a plugin :Lazy build {plugins} require("lazy").build(opts) Rebuild a plugin
:Lazy check [plugins] require("lazy").check(opts?) Check for updates and :Lazy check [plugins] require("lazy").check(opts?) Check for updates and
@ -636,21 +637,19 @@ function:
:Lazy home require("lazy").home() Go back to plugin list :Lazy home require("lazy").home() Go back to plugin list
:Lazy install [plugins] require("lazy").install(opts?) Install missing :Lazy install [plugins] require("lazy").install(opts?) Install missing plugins
plugins
:Lazy load {plugins} require("lazy").load(opts) Load a plugin that has :Lazy load {plugins} require("lazy").load(opts) Load a plugin that has
not been loaded yet. not been loaded yet.
Similar to :packadd. Similar to :packadd.
Like Like
:Lazy load foo.nvim. :Lazy load foo.nvim.
Use :Lazy! load to Use :Lazy! load to skip
skip cond checks. cond checks.
:Lazy log [plugins] require("lazy").log(opts?) Show recent updates :Lazy log [plugins] require("lazy").log(opts?) Show recent updates
:Lazy profile require("lazy").profile() Show detailed :Lazy profile require("lazy").profile() Show detailed profiling
profiling
:Lazy reload {plugins} require("lazy").reload(opts) Reload a plugin :Lazy reload {plugins} require("lazy").reload(opts) Reload a plugin
(experimental!!) (experimental!!)
@ -661,8 +660,7 @@ function:
plugin: restore it to plugin: restore it to
the state in the the state in the
lockfile or to a given lockfile or to a given
commit under the commit under the cursor
cursor
:Lazy sync [plugins] require("lazy").sync(opts?) Run install, clean and :Lazy sync [plugins] require("lazy").sync(opts?) Run install, clean and
update update
@ -670,7 +668,7 @@ function:
:Lazy update [plugins] require("lazy").update(opts?) Update plugins. This :Lazy update [plugins] require("lazy").update(opts?) Update plugins. This
will also update the will also update the
lockfile lockfile
--------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------
Any command can have a **bang** to make the command wait till it finished. For Any command can have a **bang** to make the command wait till it finished. For
example, if you want to sync lazy from the cmdline, you can use: example, if you want to sync lazy from the cmdline, you can use: