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`|
496
+
|`:Lazy log [plugins]`|`require("lazy").log(opts?)`| Show recent updates |
497
+
|`:Lazy profile`|`require("lazy").profile()`| Show detailed profiling |
498
+
|`: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|
499
+
|`:Lazy sync [plugins]`|`require("lazy").sync(opts?)`| Run install, clean and update |
500
+
|`:Lazy update [plugins]`|`require("lazy").update(opts?)`| Update plugins. This will also update the lockfile |
Copy file name to clipboardexpand all lines: lua/lazy/view/config.lua
+2-2
Original file line number
Diff line number
Diff line change
@@ -96,8 +96,8 @@ M.commands = {
96
96
},
97
97
restore= {
98
98
button=true,
99
-
desc="Updates all plugins to the state in the lockfile",
100
-
desc_plugin="Restore a plugin to the state in the lockfile",
99
+
desc="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",
100
+
desc_plugin="Restore a plugin to the state in the lockfile or to a given commit under the cursor",
0 commit comments