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`|
498
+
|`: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.|
502
499
|`:Lazy log [plugins]`|`require("lazy").log(opts?)`| Show recent updates |
503
500
|`:Lazy profile`|`require("lazy").profile()`| Show detailed profiling |
504
501
|`: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 |
@@ -532,9 +529,11 @@ Stats API (`require("lazy").stats()`):
532
529
-- when true, startuptime is the accurate cputime for the Neovim process. (Linux & Macos)
533
530
-- this is more accurate than `nvim --startuptime`, and as such will be slightly higher
534
531
-- when false, startuptime is calculated based on a delta with a timestamp when lazy started.
535
-
startuptime_cputime=false,
532
+
real_cputime=false,
536
533
count=0, -- total number of plugins
537
534
loaded=0, -- number of loaded plugins
535
+
---@typetable<string, number>
536
+
times= {},
538
537
}
539
538
```
540
539
@@ -738,6 +737,7 @@ To uninstall **lazy.nvim**, you need to remove the following files and directori
0 commit comments