From 336bbbebcb28e40283361562acca4daa2bd5f3d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 9 Oct 2023 10:39:27 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/lazy.nvim.txt | 153 ++++++++++++++++++++++++++++------------------ 1 file changed, 93 insertions(+), 60 deletions(-) diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt index a13634a..8ee9960 100644 --- a/doc/lazy.nvim.txt +++ b/doc/lazy.nvim.txt @@ -454,6 +454,7 @@ CONFIGURATION *lazy.nvim-lazy.nvim-configuration* not_loaded = "○", plugin = " ", runtime = " ", + require = "󰢱 ", source = " ", start = "", task = "✔ ", @@ -547,6 +548,15 @@ CONFIGURATION *lazy.nvim-lazy.nvim-configuration* -- executed. In this case, a warning message will be shown. 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,45 +599,63 @@ 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 + --------------------------------------------------------------------------------------------------- + Command Lua Description + ------------------------- -------------------------------- ---------------------- ----------------- + :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 - :Lazy debug require("lazy").debug() Show debug information + :Lazy debug require("lazy").debug() Show debug information - :Lazy health require("lazy").health() Run :checkhealth lazy + :Lazy health require("lazy").health() Run :checkhealth lazy - :Lazy help require("lazy").help() Toggle this help page + :Lazy help require("lazy").help() Toggle this help page - :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 - to :packadd. Like :Lazy load foo.nvim. Use - :Lazy! load to skip cond checks. + :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. - :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. - For a single plugin: restore it to the state in the - lockfile or to a given commit under the cursor + :Lazy restore [plugins] require("lazy").restore(opts?) Updates all plugins to + the state in the + 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 example, if you want to sync lazy from the cmdline, you can use: @@ -883,72 +911,77 @@ HIGHLIGHT GROUPS *lazy.nvim-lazy.nvim-highlight-groups* Click to see all highlight groups ~ - --------------------------------------------------------------------------------- - Highlight Group Default Group Description - ------------------- ------------------------ ------------------------------------ - LazyButton CursorLine + ----------------------------------------------------------------------- + Highlight Group Default Group Description + ----------------------- ----------------------- ----------------------- + 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 homebutton + LazyH1 IncSearch home button - LazyH2 Bold titles + LazyH2 Bold titles - LazyLocal Constant + LazyLocal Constant - LazyNoCond DiagnosticWarn unloaded icon for a plugin where - cond() was false + LazyNoCond DiagnosticWarn unloaded icon for a + plugin where cond() was + 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 - LazyReasonRuntime _@macro_ + LazyReasonRequire @parameter - LazyReasonSource Character + LazyReasonRuntime @macro - LazyReasonStart _@field_ + LazyReasonSource Character - LazySpecial _@punctuation.special_ + LazyReasonStart @field - LazyTaskError ErrorMsg taskerrors + LazySpecial @punctuation.special - LazyTaskOutput MsgArea task output + LazyTaskError ErrorMsg task errors - LazyUrl _@text.reference_ url + LazyTaskOutput MsgArea task output - LazyValue _@string_ valueof a property - --------------------------------------------------------------------------------- + LazyUrl @text.reference url + + LazyValue @string value of a property + ----------------------------------------------------------------------- PLUGIN AUTHORS *lazy.nvim-lazy.nvim-plugin-authors*