mirror of https://github.com/folke/lazy.nvim.git
chore(build): auto-generate vimdoc
This commit is contained in:
parent
89581ce37e
commit
067544c74a
|
@ -1,4 +1,4 @@
|
|||
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 October 09
|
||||
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 October 10
|
||||
|
||||
==============================================================================
|
||||
Table of Contents *lazy.nvim-table-of-contents*
|
||||
|
@ -599,9 +599,9 @@ enabled with `config.checker.enabled = true`.
|
|||
Any operation can be started from the UI, with a sub command or an API
|
||||
function:
|
||||
|
||||
---------------------------------------------------------------------------------------------------
|
||||
----------------------------------------------------------------------------------
|
||||
Command Lua Description
|
||||
------------------------- -------------------------------- ---------------------- -----------------
|
||||
------------------------- -------------------------------- -----------------------
|
||||
:Lazy build {plugins} require("lazy").build(opts) Rebuild a plugin
|
||||
|
||||
:Lazy check [plugins] require("lazy").check(opts?) Check for updates and
|
||||
|
@ -621,21 +621,19 @@ function:
|
|||
|
||||
:Lazy home require("lazy").home() Go back to plugin list
|
||||
|
||||
:Lazy install [plugins] require("lazy").install(opts?) Install missing
|
||||
plugins
|
||||
:Lazy install [plugins] require("lazy").install(opts?) Install missing plugins
|
||||
|
||||
:Lazy load {plugins} require("lazy").load(opts) Load a plugin that has
|
||||
not been loaded yet.
|
||||
Similar to :packadd.
|
||||
Like
|
||||
:Lazy load foo.nvim.
|
||||
Use :Lazy! load to
|
||||
skip cond checks.
|
||||
Use :Lazy! load to skip
|
||||
cond checks.
|
||||
|
||||
:Lazy log [plugins] require("lazy").log(opts?) Show recent updates
|
||||
|
||||
:Lazy profile require("lazy").profile() Show detailed
|
||||
profiling
|
||||
:Lazy profile require("lazy").profile() Show detailed profiling
|
||||
|
||||
:Lazy reload {plugins} require("lazy").reload(opts) Reload a plugin
|
||||
(experimental!!)
|
||||
|
@ -646,8 +644,7 @@ function:
|
|||
plugin: restore it to
|
||||
the state in the
|
||||
lockfile or to a given
|
||||
commit under the
|
||||
cursor
|
||||
commit under the cursor
|
||||
|
||||
:Lazy sync [plugins] require("lazy").sync(opts?) Run install, clean and
|
||||
update
|
||||
|
@ -655,7 +652,7 @@ function:
|
|||
:Lazy update [plugins] require("lazy").update(opts?) Update plugins. This
|
||||
will also update the
|
||||
lockfile
|
||||
---------------------------------------------------------------------------------------------------
|
||||
----------------------------------------------------------------------------------
|
||||
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:
|
||||
|
||||
|
|
Loading…
Reference in New Issue