chore(build): auto-generate vimdoc

This commit is contained in:
github-actions[bot] 2023-10-10 17:13:22 +00:00
parent 7b84609a06
commit 2947f104e1
1 changed files with 51 additions and 69 deletions

View File

@ -600,17 +600,14 @@ 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 show the log (git fetch)
show the log (git
fetch)
:Lazy clean [plugins] require("lazy").clean(opts?) Clean plugins that are :Lazy clean [plugins] require("lazy").clean(opts?) Clean plugins that are no longer needed
no longer needed
:Lazy clear require("lazy").clear() Clear finished tasks :Lazy clear require("lazy").clear() Clear finished tasks
@ -624,36 +621,24 @@ function:
: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 :Lazy load {plugins} require("lazy").load(opts) Load a plugin that has not been loaded yet. Similar
not been loaded yet. to :packadd. Like :Lazy load foo.nvim. Use
Similar to :packadd. :Lazy! load to skip cond checks.
Like
:Lazy load foo.nvim.
Use :Lazy! load to skip
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 profiling :Lazy profile require("lazy").profile() Show detailed profiling
:Lazy reload {plugins} require("lazy").reload(opts) Reload a plugin :Lazy reload {plugins} require("lazy").reload(opts) Reload a plugin (experimental!!)
(experimental!!)
:Lazy restore [plugins] require("lazy").restore(opts?) Updates all plugins to :Lazy restore [plugins] require("lazy").restore(opts?) Updates all plugins to the state in the lockfile.
the state in the For a single plugin: restore it to the state in the
lockfile. For a single lockfile or to a given commit under the cursor
plugin: restore it to
the state in the
lockfile or to a given
commit under the 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
:Lazy update [plugins] require("lazy").update(opts?) Update plugins. This :Lazy update [plugins] require("lazy").update(opts?) Update plugins. This will also update the lockfile
will also update the --------------------------------------------------------------------------------------------------------------
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:
@ -909,77 +894,74 @@ HIGHLIGHT GROUPS *lazy.nvim-lazy.nvim-highlight-groups*
Click to see all highlight groups ~ Click to see all highlight groups ~
----------------------------------------------------------------------- ---------------------------------------------------------------------------------
Highlight Group Default Group Description Highlight Group Default Group Description
----------------------- ----------------------- ----------------------- ------------------- ------------------------ ------------------------------------
LazyButton CursorLine LazyButton CursorLine
LazyButtonActive Visual LazyButtonActive Visual
LazyComment Comment LazyComment Comment
LazyCommit @variable.builtin commit ref LazyCommit _@variable.builtin_ commitref
LazyCommitIssue Number LazyCommitIssue Number
LazyCommitScope Italic conventional commit LazyCommitScope Italic conventional commit scope
scope
LazyCommitType Title conventional commit LazyCommitType Title conventional commit type
type
LazyDimmed Conceal property LazyDimmed Conceal property
LazyDir @text.reference directory LazyDir _@text.reference_ directory
LazyH1 IncSearch home button LazyH1 IncSearch homebutton
LazyH2 Bold titles LazyH2 Bold titles
LazyLocal Constant LazyLocal Constant
LazyNoCond DiagnosticWarn unloaded icon for a LazyNoCond DiagnosticWarn unloaded icon for a plugin where
plugin where cond() was cond() was false
false
LazyNormal NormalFloat LazyNormal NormalFloat
LazyProgressDone Constant progress bar done LazyProgressDone Constant progress bar done
LazyProgressTodo LineNr progress bar todo LazyProgressTodo LineNr progress bar todo
LazyProp Conceal property LazyProp Conceal property
LazyReasonCmd Operator LazyReasonCmd Operator
LazyReasonEvent Constant LazyReasonEvent Constant
LazyReasonFt Character LazyReasonFt Character
LazyReasonImport Identifier LazyReasonImport Identifier
LazyReasonKeys Statement LazyReasonKeys Statement
LazyReasonPlugin Special LazyReasonPlugin Special
LazyReasonRequire @parameter LazyReasonRequire _@parameter_
LazyReasonRuntime @macro LazyReasonRuntime _@macro_
LazyReasonSource Character LazyReasonSource Character
LazyReasonStart @field LazyReasonStart _@field_
LazySpecial @punctuation.special LazySpecial _@punctuation.special_
LazyTaskError ErrorMsg task errors LazyTaskError ErrorMsg taskerrors
LazyTaskOutput MsgArea task output LazyTaskOutput MsgArea task output
LazyUrl @text.reference url LazyUrl _@text.reference_ url
LazyValue @string value of a property LazyValue _@string_ valueof a property
----------------------------------------------------------------------- ---------------------------------------------------------------------------------
PLUGIN AUTHORS *lazy.nvim-lazy.nvim-plugin-authors* PLUGIN AUTHORS *lazy.nvim-lazy.nvim-plugin-authors*