Skip to content

Commit 86dff1b

Browse files
committed
feat(commands): added health command to run :checkhealth lazy
1 parent 716b6cc commit 86dff1b

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,7 @@ Any operation can be started from the UI, with a sub command or an API function:
490490
| `:Lazy clean [plugins]` | `require("lazy").clean(opts?)` | Clean plugins that are no longer needed |
491491
| `:Lazy clear` | `require("lazy").clear()` | Clear finished tasks |
492492
| `:Lazy debug` | `require("lazy").debug()` | Show debug information |
493+
| `:Lazy health` | `require("lazy").health()` | Run `:checkhealth lazy` |
493494
| `:Lazy help` | `require("lazy").help()` | Toggle this help page |
494495
| `:Lazy home` | `require("lazy").home()` | Go back to plugin list |
495496
| `:Lazy install [plugins]` | `require("lazy").install(opts?)` | Install missing plugins |

lua/lazy/view/commands.lua

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ M.commands = {
2424
Manage.clear()
2525
View.show()
2626
end,
27+
health = function()
28+
vim.cmd.checkhealth("lazy")
29+
end,
2730
home = function()
2831
View.show("home")
2932
end,

lua/lazy/view/config.lua

+4
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ M.commands = {
134134
plugins = true,
135135
plugins_required = true,
136136
},
137+
health = {
138+
desc = "Run `:checkhealth lazy`",
139+
id = 14,
140+
},
137141
}
138142

139143
return M

0 commit comments

Comments
 (0)