Skip to content

Commit f25f942

Browse files
committed
feat: expose all commands on main lazy module
1 parent 0b4a04d commit f25f942

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

lua/lazy/init.lua

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---@type LazyCommands
12
local M = {}
23

34
---@param spec LazySpec Should be a module name to load, or a plugin spec
@@ -87,4 +88,10 @@ function M.plugins()
8788
return vim.tbl_values(require("lazy.core.config").plugins)
8889
end
8990

91+
setmetatable(M, {
92+
__index = function(_, key)
93+
return require("lazy.view.commands").commands[key]
94+
end,
95+
})
96+
9097
return M

lua/lazy/view/commands.lua

+6-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ function M.cmd(cmd, plugins)
1616
end
1717
end
1818

19+
---@class LazyCommands
1920
M.commands = {
2021
clean = function(plugins)
2122
Manage.clean({ clear = true, mode = "clean", plugins = plugins })
@@ -33,6 +34,9 @@ M.commands = {
3334
home = function()
3435
View.show("home")
3536
end,
37+
show = function()
38+
View.show("home")
39+
end,
3640
help = function()
3741
View.show("help")
3842
end,
@@ -44,8 +48,8 @@ M.commands = {
4448
end,
4549
sync = function()
4650
Manage.clean({ clear = true, wait = true, mode = "sync" })
47-
Manage.update({ interactive = true })
48-
Manage.install({ interactive = true })
51+
Manage.update()
52+
Manage.install()
4953
end,
5054
update = function(plugins)
5155
Manage.update({ clear = true, mode = "update", plugins = plugins })

0 commit comments

Comments
 (0)