Skip to content

Commit 317df42

Browse files
chore(build): auto-generate vimdoc
1 parent eed1ef3 commit 317df42

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

doc/lazy.nvim.txt

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 January 05
1+
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 January 06
22

33
==============================================================================
44
Table of Contents *lazy.nvim-table-of-contents*
@@ -347,6 +347,8 @@ CONFIGURATION *lazy.nvim-configuration*
347347
version = nil,
348348
-- version = "", -- enable this to try installing the latest stable versions of plugins
349349
},
350+
-- leave nil when passing the spec as the first argument to setup()
351+
spec = nil, ---@type LazySpec
350352
lockfile = vim.fn.stdpath("config") .. "/lazy-lock.json", -- lockfile generated after running update.
351353
concurrency = nil, ---@type number limit the maximum amount of concurrent tasks
352354
git = {
@@ -374,20 +376,21 @@ CONFIGURATION *lazy.nvim-configuration*
374376
-- The border to use for the UI window. Accepts same border values as |nvim_open_win()|.
375377
border = "none",
376378
icons = {
377-
loaded = "",
378-
not_loaded = "",
379379
cmd = " ",
380380
config = "",
381381
event = "",
382382
ft = " ",
383383
init = " ",
384+
import = " ",
384385
keys = " ",
386+
lazy = " ",
387+
loaded = "",
388+
not_loaded = "",
385389
plugin = " ",
386390
runtime = " ",
387391
source = " ",
388392
start = "",
389393
task = " ",
390-
lazy = " ",
391394
list = {
392395
"",
393396
"",
@@ -405,21 +408,15 @@ CONFIGURATION *lazy.nvim-configuration*
405408

406409
-- open lazygit log
407410
["<localleader>l"] = function(plugin)
408-
require("lazy.util").open_cmd({ "lazygit", "log" }, {
411+
require("lazy.util").float_term({ "lazygit", "log" }, {
409412
cwd = plugin.dir,
410-
terminal = true,
411-
close_on_exit = true,
412-
enter = true,
413413
})
414414
end,
415415

416416
-- open a terminal for the plugin dir
417417
["<localleader>t"] = function(plugin)
418-
require("lazy.util").open_cmd({ vim.go.shell }, {
418+
require("lazy.util").float_term(nil, {
419419
cwd = plugin.dir,
420-
terminal = true,
421-
close_on_exit = true,
422-
enter = true,
423420
})
424421
end,
425422
},
@@ -454,7 +451,7 @@ CONFIGURATION *lazy.nvim-configuration*
454451
-- The default is to disable on:
455452
-- VimEnter: not useful to cache anything else beyond startup
456453
-- BufReadPre: this will be triggered early when opening a file from the command line directly
457-
disable_events = { "VimEnter", "BufReadPre" },
454+
disable_events = { "UIEnter", "BufReadPre" },
458455
ttl = 3600 24 5, -- keep unused modules for up to 5 days
459456
},
460457
reset_packpath = true, -- reset the package path to improve startup time
@@ -537,7 +534,7 @@ function:
537534
│:Lazy help │require("lazy").help() │Toggle this help page │
538535
│:Lazy home │require("lazy").home() │Go back to plugin list │
539536
│:Lazy install [plugins] │require("lazy").install(opts?) │Install missing plugins │
540-
│:Lazy load {plugins} │require("lazy").load(opts) │Load a plugin that has not been loaded yet. Similar to :packadd. Like :Lazy load foo.nvim
537+
│: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.
541538
│:Lazy log [plugins] │require("lazy").log(opts?) │Show recent updates │
542539
│:Lazy profile │require("lazy").profile() │Show detailed profiling │
543540
│: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│
@@ -571,9 +568,11 @@ Stats API (`require("lazy").stats()`):
571568
-- when true, startuptime is the accurate cputime for the Neovim process. (Linux & Macos)
572569
-- this is more accurate than `nvim --startuptime`, and as such will be slightly higher
573570
-- when false, startuptime is calculated based on a delta with a timestamp when lazy started.
574-
startuptime_cputime = false,
571+
real_cputime = false,
575572
count = 0, -- total number of plugins
576573
loaded = 0, -- number of loaded plugins
574+
---@type table<string, number>
575+
times = {},
577576
}
578577
<
579578

@@ -809,6 +808,7 @@ Click to see all highlight groups
809808
│**LazyReasonCmd** │**_Operator_** │ │
810809
│**LazyReasonEvent** │**_Constant_** │ │
811810
│**LazyReasonFt** │**_Character_** │ │
811+
│**LazyReasonImport** │**_Identifier_** │ │
812812
│**LazyReasonKeys** │**_Statement_** │ │
813813
│**LazyReasonPlugin** │**_Special_** │ │
814814
│**LazyReasonRuntime**│_macro │ │

0 commit comments

Comments
 (0)