mirror of https://github.com/folke/lazy.nvim.git
chore(build): auto-generate vimdoc
This commit is contained in:
parent
423a152e94
commit
336bbbebcb
|
@ -454,6 +454,7 @@ CONFIGURATION *lazy.nvim-lazy.nvim-configuration*
|
||||||
not_loaded = "○",
|
not_loaded = "○",
|
||||||
plugin = " ",
|
plugin = " ",
|
||||||
runtime = " ",
|
runtime = " ",
|
||||||
|
require = " ",
|
||||||
source = " ",
|
source = " ",
|
||||||
start = "",
|
start = "",
|
||||||
task = "✔ ",
|
task = "✔ ",
|
||||||
|
@ -547,6 +548,15 @@ CONFIGURATION *lazy.nvim-lazy.nvim-configuration*
|
||||||
-- executed. In this case, a warning message will be shown.
|
-- executed. In this case, a warning message will be shown.
|
||||||
warn_on_override = true,
|
warn_on_override = true,
|
||||||
},
|
},
|
||||||
|
-- Enable profiling of lazy.nvim. This will add some overhead,
|
||||||
|
-- so only enable this when you are debugging lazy.nvim
|
||||||
|
profiling = {
|
||||||
|
-- Enables extra stats on the debug tab related to the loader cache.
|
||||||
|
-- Additionally gathers stats about all package.loaders
|
||||||
|
loader = false,
|
||||||
|
-- Track each new require in the Lazy profiling tab
|
||||||
|
require = false,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
<
|
<
|
||||||
|
|
||||||
|
@ -589,14 +599,17 @@ 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 show the log (git fetch)
|
:Lazy check [plugins] require("lazy").check(opts?) Check for updates and
|
||||||
|
show the log (git
|
||||||
|
fetch)
|
||||||
|
|
||||||
:Lazy clean [plugins] require("lazy").clean(opts?) Clean plugins that are no longer needed
|
:Lazy clean [plugins] require("lazy").clean(opts?) Clean plugins that are
|
||||||
|
no longer needed
|
||||||
|
|
||||||
:Lazy clear require("lazy").clear() Clear finished tasks
|
:Lazy clear require("lazy").clear() Clear finished tasks
|
||||||
|
|
||||||
|
@ -608,26 +621,41 @@ 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 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
|
:Lazy load {plugins} require("lazy").load(opts) Load a plugin that has
|
||||||
to :packadd. Like :Lazy load foo.nvim. Use
|
not been loaded yet.
|
||||||
:Lazy! load to skip cond checks.
|
Similar to :packadd.
|
||||||
|
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 (experimental!!)
|
:Lazy reload {plugins} require("lazy").reload(opts) Reload a plugin
|
||||||
|
(experimental!!)
|
||||||
|
|
||||||
:Lazy restore [plugins] require("lazy").restore(opts?) Updates all plugins to the state in the lockfile.
|
:Lazy restore [plugins] require("lazy").restore(opts?) Updates all plugins to
|
||||||
For a single plugin: restore it to the state in the
|
the state in the
|
||||||
lockfile or to a given commit under the cursor
|
lockfile. For a single
|
||||||
|
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 update
|
:Lazy sync [plugins] require("lazy").sync(opts?) Run install, clean and
|
||||||
|
update
|
||||||
|
|
||||||
:Lazy update [plugins] require("lazy").update(opts?) Update plugins. This will also update the lockfile
|
: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
|
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:
|
||||||
|
|
||||||
|
@ -883,26 +911,28 @@ 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_ commitref
|
LazyCommit @variable.builtin commit ref
|
||||||
|
|
||||||
LazyCommitIssue Number
|
LazyCommitIssue Number
|
||||||
|
|
||||||
LazyCommitScope Italic conventional commit scope
|
LazyCommitScope Italic conventional commit
|
||||||
|
scope
|
||||||
|
|
||||||
LazyCommitType Title conventional commit type
|
LazyCommitType Title conventional commit
|
||||||
|
type
|
||||||
|
|
||||||
LazyDimmed Conceal property
|
LazyDimmed Conceal property
|
||||||
|
|
||||||
LazyDir _@text.reference_ directory
|
LazyDir @text.reference directory
|
||||||
|
|
||||||
LazyH1 IncSearch home button
|
LazyH1 IncSearch home button
|
||||||
|
|
||||||
|
@ -910,8 +940,9 @@ Click to see all highlight groups ~
|
||||||
|
|
||||||
LazyLocal Constant
|
LazyLocal Constant
|
||||||
|
|
||||||
LazyNoCond DiagnosticWarn unloaded icon for a plugin where
|
LazyNoCond DiagnosticWarn unloaded icon for a
|
||||||
cond() was false
|
plugin where cond() was
|
||||||
|
false
|
||||||
|
|
||||||
LazyNormal NormalFloat
|
LazyNormal NormalFloat
|
||||||
|
|
||||||
|
@ -933,22 +964,24 @@ Click to see all highlight groups ~
|
||||||
|
|
||||||
LazyReasonPlugin Special
|
LazyReasonPlugin Special
|
||||||
|
|
||||||
LazyReasonRuntime _@macro_
|
LazyReasonRequire @parameter
|
||||||
|
|
||||||
|
LazyReasonRuntime @macro
|
||||||
|
|
||||||
LazyReasonSource Character
|
LazyReasonSource Character
|
||||||
|
|
||||||
LazyReasonStart _@field_
|
LazyReasonStart @field
|
||||||
|
|
||||||
LazySpecial _@punctuation.special_
|
LazySpecial @punctuation.special
|
||||||
|
|
||||||
LazyTaskError ErrorMsg task errors
|
LazyTaskError ErrorMsg task errors
|
||||||
|
|
||||||
LazyTaskOutput MsgArea task output
|
LazyTaskOutput MsgArea task output
|
||||||
|
|
||||||
LazyUrl _@text.reference_ url
|
LazyUrl @text.reference url
|
||||||
|
|
||||||
LazyValue _@string_ valueof a property
|
LazyValue @string value of a property
|
||||||
---------------------------------------------------------------------------------
|
-----------------------------------------------------------------------
|
||||||
|
|
||||||
PLUGIN AUTHORS *lazy.nvim-lazy.nvim-plugin-authors*
|
PLUGIN AUTHORS *lazy.nvim-lazy.nvim-plugin-authors*
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue