You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
│: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. │
│: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()`):
571
568
-- when true, startuptime is the accurate cputime for the Neovim process. (Linux & Macos)
572
569
-- this is more accurate than `nvim --startuptime`, and as such will be slightly higher
573
570
-- when false, startuptime is calculated based on a delta with a timestamp when lazy started.
574
-
startuptime_cputime = false,
571
+
real_cputime = false,
575
572
count = 0, -- total number of plugins
576
573
loaded = 0, -- number of loaded plugins
574
+
---@type table<string, number>
575
+
times = {},
577
576
}
578
577
<
579
578
@@ -809,6 +808,7 @@ Click to see all highlight groups
0 commit comments