Skip to content

Commit a55d275

Browse files
chore(build): auto-generate vimdoc
1 parent 9dde1f1 commit a55d275

File tree

1 file changed

+52
-69
lines changed

1 file changed

+52
-69
lines changed

Diff for: doc/lazy.nvim.txt

+52-69
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,7 @@ CONFIGURATION *lazy.nvim-lazy.nvim-configuration*
411411
},
412412
-- leave nil when passing the spec as the first argument to setup()
413413
spec = nil, ---@type LazySpec
414+
local_spec = true, -- load project specific .lazy.lua spec files. They will be added at the end of the spec.
414415
lockfile = vim.fn.stdpath("config") .. "/lazy-lock.json", -- lockfile generated after running update.
415416
---@type number? limit the maximum amount of concurrent tasks
416417
concurrency = jit.os:find("Windows") and (vim.uv.available_parallelism() * 2) or nil,
@@ -615,17 +616,14 @@ enabled with `config.checker.enabled = true`.
615616
Any operation can be started from the UI, with a sub command or an API
616617
function:
617618

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

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

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

630628
:Lazy clear require("lazy").clear() Clear finished tasks
631629

@@ -639,36 +637,24 @@ function:
639637

640638
:Lazy install [plugins] require("lazy").install(opts?) Install missing plugins
641639

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.
640+
:Lazy load {plugins} require("lazy").load(opts) Load a plugin that has not been loaded yet. Similar
641+
to :packadd. Like :Lazy load foo.nvim. Use
642+
:Lazy! load to skip cond checks.
649643

650644
:Lazy log [plugins] require("lazy").log(opts?) Show recent updates
651645

652646
:Lazy profile require("lazy").profile() Show detailed profiling
653647

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

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
650+
:Lazy restore [plugins] require("lazy").restore(opts?) Updates all plugins to the state in the lockfile.
651+
For a single plugin: restore it to the state in the
652+
lockfile or to a given commit under the cursor
664653

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

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

@@ -924,77 +910,74 @@ HIGHLIGHT GROUPS *lazy.nvim-lazy.nvim-highlight-groups*
924910

925911
Click to see all highlight groups ~
926912

927-
-----------------------------------------------------------------------
928-
Highlight Group Default Group Description
929-
----------------------- ----------------------- -----------------------
930-
LazyButton CursorLine
913+
---------------------------------------------------------------------------------
914+
Highlight Group Default Group Description
915+
------------------- ------------------------ ------------------------------------
916+
LazyButton CursorLine
931917

932-
LazyButtonActive Visual
918+
LazyButtonActive Visual
933919

934-
LazyComment Comment
920+
LazyComment Comment
935921

936-
LazyCommit @variable.builtin commit ref
922+
LazyCommit _@variable.builtin_ commitref
937923

938-
LazyCommitIssue Number
924+
LazyCommitIssue Number
939925

940-
LazyCommitScope Italic conventional commit
941-
scope
926+
LazyCommitScope Italic conventional commit scope
942927

943-
LazyCommitType Title conventional commit
944-
type
928+
LazyCommitType Title conventional commit type
945929

946-
LazyDimmed Conceal property
930+
LazyDimmed Conceal property
947931

948-
LazyDir @markup.link directory
932+
LazyDir _@markup.link_ directory
949933

950-
LazyH1 IncSearch home button
934+
LazyH1 IncSearch homebutton
951935

952-
LazyH2 Bold titles
936+
LazyH2 Bold titles
953937

954-
LazyLocal Constant
938+
LazyLocal Constant
955939

956-
LazyNoCond DiagnosticWarn unloaded icon for a
957-
plugin where cond() was
958-
false
940+
LazyNoCond DiagnosticWarn unloaded icon for a plugin where
941+
cond() was false
959942

960-
LazyNormal NormalFloat
943+
LazyNormal NormalFloat
961944

962-
LazyProgressDone Constant progress bar done
945+
LazyProgressDone Constant progress bar done
963946

964-
LazyProgressTodo LineNr progress bar todo
947+
LazyProgressTodo LineNr progress bar todo
965948

966-
LazyProp Conceal property
949+
LazyProp Conceal property
967950

968-
LazyReasonCmd Operator
951+
LazyReasonCmd Operator
969952

970-
LazyReasonEvent Constant
953+
LazyReasonEvent Constant
971954

972-
LazyReasonFt Character
955+
LazyReasonFt Character
973956

974-
LazyReasonImport Identifier
957+
LazyReasonImport Identifier
975958

976-
LazyReasonKeys Statement
959+
LazyReasonKeys Statement
977960

978-
LazyReasonPlugin Special
961+
LazyReasonPlugin Special
979962

980-
LazyReasonRequire @variable.parameter
963+
LazyReasonRequire _@variable.parameter_
981964

982-
LazyReasonRuntime @macro
965+
LazyReasonRuntime _@macro_
983966

984-
LazyReasonSource Character
967+
LazyReasonSource Character
985968

986-
LazyReasonStart @variable.member
969+
LazyReasonStart _@variable.member_
987970

988-
LazySpecial @punctuation.special
971+
LazySpecial _@punctuation.special_
989972

990-
LazyTaskError ErrorMsg task errors
973+
LazyTaskError ErrorMsg taskerrors
991974

992-
LazyTaskOutput MsgArea task output
975+
LazyTaskOutput MsgArea task output
993976

994-
LazyUrl @markup.link url
977+
LazyUrl _@markup.link_ url
995978

996-
LazyValue @string value of a property
997-
-----------------------------------------------------------------------
979+
LazyValue _@string_ valueof a property
980+
---------------------------------------------------------------------------------
998981

999982
PLUGIN AUTHORS *lazy.nvim-lazy.nvim-plugin-authors*
1000983

0 commit comments

Comments
 (0)