File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change
1
+ --- @type LazyCommands
1
2
local M = {}
2
3
3
4
--- @param spec LazySpec Should be a module name to load , or a plugin spec
@@ -87,4 +88,10 @@ function M.plugins()
87
88
return vim .tbl_values (require (" lazy.core.config" ).plugins )
88
89
end
89
90
91
+ setmetatable (M , {
92
+ __index = function (_ , key )
93
+ return require (" lazy.view.commands" ).commands [key ]
94
+ end ,
95
+ })
96
+
90
97
return M
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ function M.cmd(cmd, plugins)
16
16
end
17
17
end
18
18
19
+ --- @class LazyCommands
19
20
M .commands = {
20
21
clean = function (plugins )
21
22
Manage .clean ({ clear = true , mode = " clean" , plugins = plugins })
@@ -33,6 +34,9 @@ M.commands = {
33
34
home = function ()
34
35
View .show (" home" )
35
36
end ,
37
+ show = function ()
38
+ View .show (" home" )
39
+ end ,
36
40
help = function ()
37
41
View .show (" help" )
38
42
end ,
@@ -44,8 +48,8 @@ M.commands = {
44
48
end ,
45
49
sync = function ()
46
50
Manage .clean ({ clear = true , wait = true , mode = " sync" })
47
- Manage .update ({ interactive = true } )
48
- Manage .install ({ interactive = true } )
51
+ Manage .update ()
52
+ Manage .install ()
49
53
end ,
50
54
update = function (plugins )
51
55
Manage .update ({ clear = true , mode = " update" , plugins = plugins })
You can’t perform that action at this time.
0 commit comments