Skip to content

Commit ba58b87

Browse files
chore(build): auto-generate vimdoc
1 parent f61ca6e commit ba58b87

File tree

1 file changed

+41
-43
lines changed

1 file changed

+41
-43
lines changed

Diff for: doc/lazy.nvim.txt

+41-43
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 March 27
1+
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 March 28
22

33
==============================================================================
44
Table of Contents *lazy.nvim-table-of-contents*
@@ -20,6 +20,7 @@ Table of Contents *lazy.nvim-table-of-contents*
2020
- Highlight Groups |lazy.nvim-lazy.nvim-highlight-groups|
2121
- Plugin Authors |lazy.nvim-lazy.nvim-plugin-authors|
2222
- Other Neovim Plugin Managers in Lua|lazy.nvim-lazy.nvim-other-neovim-plugin-managers-in-lua|
23+
2. Links |lazy.nvim-links|
2324

2425
==============================================================================
2526
1. lazy.nvim *lazy.nvim-lazy.nvim*
@@ -614,63 +615,60 @@ enabled with `config.checker.enabled = true`.
614615
Any operation can be started from the UI, with a sub command or an API
615616
function:
616617

617-
---------------------------------------------------------------------------------------------------
618-
Command Lua Description
619-
------------------------- -------------------------------- ---------------------- -----------------
620-
:Lazy build {plugins} require("lazy").build(opts) Rebuild a plugin
618+
----------------------------------------------------------------------------------
619+
Command Lua Description
620+
------------------------- -------------------------------- -----------------------
621+
:Lazy build {plugins} require("lazy").build(opts) Rebuild a plugin
621622

622-
:Lazy check [plugins] require("lazy").check(opts?) Check for updates and
623-
show the log (git
624-
fetch)
623+
:Lazy check [plugins] require("lazy").check(opts?) Check for updates and
624+
show the log (git
625+
fetch)
625626

626-
:Lazy clean [plugins] require("lazy").clean(opts?) Clean plugins that are
627-
no longer needed
627+
:Lazy clean [plugins] require("lazy").clean(opts?) Clean plugins that are
628+
no longer needed
628629

629-
:Lazy clear require("lazy").clear() Clear finished tasks
630+
:Lazy clear require("lazy").clear() Clear finished tasks
630631

631-
:Lazy debug require("lazy").debug() Show debug information
632+
:Lazy debug require("lazy").debug() Show debug information
632633

633-
:Lazy health require("lazy").health() Run :checkhealth lazy
634+
:Lazy health require("lazy").health() Run :checkhealth lazy
634635

635-
:Lazy help require("lazy").help() Toggle this help page
636+
:Lazy help require("lazy").help() Toggle this help page
636637

637-
:Lazy home require("lazy").home() Go back to plugin list
638+
:Lazy home require("lazy").home() Go back to plugin list
638639

639-
:Lazy install [plugins] require("lazy").install(opts?) Install missing
640-
plugins
640+
:Lazy install [plugins] require("lazy").install(opts?) Install missing plugins
641641

642-
:Lazy load {plugins} require("lazy").load(opts) Load a plugin that has
643-
not been loaded yet.
644-
Similar to :packadd.
645-
Like
646-
:Lazy load foo.nvim.
647-
Use :Lazy! load to
648-
skip cond checks.
642+
:Lazy load {plugins} require("lazy").load(opts) Load a plugin that has
643+
not been loaded yet.
644+
Similar to :packadd.
645+
Like
646+
:Lazy load foo.nvim.
647+
Use :Lazy! load to skip
648+
cond checks.
649649

650-
:Lazy log [plugins] require("lazy").log(opts?) Show recent updates
650+
:Lazy log [plugins] require("lazy").log(opts?) Show recent updates
651651

652-
:Lazy profile require("lazy").profile() Show detailed
653-
profiling
652+
:Lazy profile require("lazy").profile() Show detailed profiling
654653

655-
:Lazy reload {plugins} require("lazy").reload(opts) Reload a plugin
656-
(experimental!!)
654+
:Lazy reload {plugins} require("lazy").reload(opts) Reload a plugin
655+
(experimental!!)
657656

658-
:Lazy restore [plugins] require("lazy").restore(opts?) Updates all plugins to
659-
the state in the
660-
lockfile. For a single
661-
plugin: restore it to
662-
the state in the
663-
lockfile or to a given
664-
commit under the
665-
cursor
657+
:Lazy restore [plugins] require("lazy").restore(opts?) Updates all plugins to
658+
the state in the
659+
lockfile. For a single
660+
plugin: restore it to
661+
the state in the
662+
lockfile or to a given
663+
commit under the cursor
666664

667-
:Lazy sync [plugins] require("lazy").sync(opts?) Run install, clean and
668-
update
665+
:Lazy sync [plugins] require("lazy").sync(opts?) Run install, clean and
666+
update
669667

670-
:Lazy update [plugins] require("lazy").update(opts?) Update plugins. This
671-
will also update the
672-
lockfile
673-
---------------------------------------------------------------------------------------------------
668+
:Lazy update [plugins] require("lazy").update(opts?) Update plugins. This
669+
will also update the
670+
lockfile
671+
----------------------------------------------------------------------------------
674672
Any command can have a **bang** to make the command wait till it finished. For
675673
example, if you want to sync lazy from the cmdline, you can use:
676674

0 commit comments

Comments
 (0)