Skip to content

Commit ae0b871

Browse files
committed
feat: lazy commands
1 parent a87982f commit ae0b871

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

lua/lazy/view/commands.lua

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
local View = require("lazy.view")
2+
local Manager = require("lazy.manager")
3+
4+
local M = {}
5+
6+
---@param cmd string
7+
function M.cmd(cmd)
8+
cmd = cmd == "" and "show" or cmd
9+
local command = M.commands[cmd]
10+
if command == nil then
11+
Util.error("Invalid lazy command '" .. cmd .. "'")
12+
else
13+
command()
14+
end
15+
end
16+
17+
M.commands = {
18+
clean = function()
19+
Manager.clean({ clear = true, show = true })
20+
end,
21+
install = function()
22+
Manager.install({ clear = true, show = true })
23+
end,
24+
show = function()
25+
View.show()
26+
end,
27+
sync = function()
28+
Manager.update({ clear = true, show = true })
29+
Manager.install({ show = true })
30+
Manager.clean({ show = true })
31+
end,
32+
update = function()
33+
Manager.update({ clear = true, show = true })
34+
end,
35+
}
36+
37+
function M.setup()
38+
vim.api.nvim_create_user_command("Lazy", function(args)
39+
M.cmd(vim.trim(args.args or ""))
40+
end, {
41+
nargs = "?",
42+
desc = "Lazy",
43+
complete = function(_, line)
44+
if line:match("^%s*Lazy %w+ ") then
45+
return {}
46+
end
47+
48+
local prefix = line:match("^%s*Lazy (%w*)") or ""
49+
50+
---@param key string
51+
return vim.tbl_filter(function(key)
52+
return key:find(prefix) == 1
53+
end, vim.tbl_keys(M.commands))
54+
end,
55+
})
56+
57+
for name in pairs(M.commands) do
58+
local cmd = "Lazy" .. name:sub(1, 1):upper() .. name:sub(2)
59+
60+
vim.api.nvim_create_user_command(cmd, function()
61+
M.cmd(name)
62+
end, {
63+
desc = "Lazy " .. name,
64+
})
65+
end
66+
end
67+
68+
return M

0 commit comments

Comments
 (0)