mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-18 20:36:45 +00:00
feat(commands): added health command to run :checkhealth lazy
This commit is contained in:
parent
716b6cc2b5
commit
86dff1b59a
3 changed files with 8 additions and 0 deletions
|
@ -24,6 +24,9 @@ M.commands = {
|
|||
Manage.clear()
|
||||
View.show()
|
||||
end,
|
||||
health = function()
|
||||
vim.cmd.checkhealth("lazy")
|
||||
end,
|
||||
home = function()
|
||||
View.show("home")
|
||||
end,
|
||||
|
|
|
@ -134,6 +134,10 @@ M.commands = {
|
|||
plugins = true,
|
||||
plugins_required = true,
|
||||
},
|
||||
health = {
|
||||
desc = "Run `:checkhealth lazy`",
|
||||
id = 14,
|
||||
},
|
||||
}
|
||||
|
||||
return M
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue