2022-11-21 06:25:28 +08:00
|
|
|
local View = require("lazy.view")
|
2022-11-27 18:02:28 +08:00
|
|
|
local Manage = require("lazy.manage")
|
2022-11-25 05:04:23 +08:00
|
|
|
local Util = require("lazy.util")
|
2022-11-21 06:25:28 +08:00
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
---@param cmd string
|
|
|
|
function M.cmd(cmd)
|
|
|
|
cmd = cmd == "" and "show" or cmd
|
|
|
|
local command = M.commands[cmd]
|
|
|
|
if command == nil then
|
|
|
|
Util.error("Invalid lazy command '" .. cmd .. "'")
|
|
|
|
else
|
|
|
|
command()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
M.commands = {
|
|
|
|
clean = function()
|
2022-11-29 17:30:14 +08:00
|
|
|
Manage.clean({ clear = true, interactive = true, mode = "clean" })
|
2022-11-21 06:25:28 +08:00
|
|
|
end,
|
2022-11-23 23:12:02 +08:00
|
|
|
clear = function()
|
2022-11-27 18:02:28 +08:00
|
|
|
Manage.clear()
|
2022-11-23 23:12:02 +08:00
|
|
|
View.show()
|
|
|
|
end,
|
2022-11-21 06:25:28 +08:00
|
|
|
install = function()
|
2022-11-29 17:30:14 +08:00
|
|
|
Manage.install({ clear = true, interactive = true, mode = "install" })
|
2022-11-23 04:12:50 +08:00
|
|
|
end,
|
|
|
|
log = function()
|
2022-11-29 17:30:14 +08:00
|
|
|
Manage.log({ clear = true, interactive = true, mode = "log" })
|
2022-11-21 06:25:28 +08:00
|
|
|
end,
|
|
|
|
show = function()
|
|
|
|
View.show()
|
|
|
|
end,
|
2022-11-29 17:30:14 +08:00
|
|
|
help = function()
|
|
|
|
View.show("help")
|
|
|
|
end,
|
2022-11-21 06:25:28 +08:00
|
|
|
sync = function()
|
2022-11-29 17:30:14 +08:00
|
|
|
Manage.clean({ interactive = true, clear = true, wait = true, mode = "sync" })
|
2022-11-28 20:11:41 +08:00
|
|
|
Manage.update({ interactive = true })
|
|
|
|
Manage.install({ interactive = true })
|
2022-11-21 06:25:28 +08:00
|
|
|
end,
|
|
|
|
update = function()
|
2022-11-29 17:30:14 +08:00
|
|
|
Manage.update({ clear = true, interactive = true, mode = "update" })
|
2022-11-21 06:25:28 +08:00
|
|
|
end,
|
2022-11-29 15:23:23 +08:00
|
|
|
check = function()
|
2022-11-29 17:30:14 +08:00
|
|
|
Manage.check({ clear = true, interactive = true, mode = "check" })
|
2022-11-29 15:23:23 +08:00
|
|
|
end,
|
2022-11-29 15:06:10 +08:00
|
|
|
restore = function()
|
2022-11-29 17:30:14 +08:00
|
|
|
Manage.update({ clear = true, interactive = true, lockfile = true, mode = "restore" })
|
2022-11-29 07:15:13 +08:00
|
|
|
end,
|
2022-11-21 06:25:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function M.setup()
|
|
|
|
vim.api.nvim_create_user_command("Lazy", function(args)
|
|
|
|
M.cmd(vim.trim(args.args or ""))
|
|
|
|
end, {
|
|
|
|
nargs = "?",
|
|
|
|
desc = "Lazy",
|
|
|
|
complete = function(_, line)
|
|
|
|
if line:match("^%s*Lazy %w+ ") then
|
|
|
|
return {}
|
|
|
|
end
|
|
|
|
|
|
|
|
local prefix = line:match("^%s*Lazy (%w*)") or ""
|
|
|
|
|
|
|
|
---@param key string
|
|
|
|
return vim.tbl_filter(function(key)
|
|
|
|
return key:find(prefix) == 1
|
|
|
|
end, vim.tbl_keys(M.commands))
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
for name in pairs(M.commands) do
|
|
|
|
local cmd = "Lazy" .. name:sub(1, 1):upper() .. name:sub(2)
|
|
|
|
|
|
|
|
vim.api.nvim_create_user_command(cmd, function()
|
|
|
|
M.cmd(name)
|
|
|
|
end, {
|
|
|
|
desc = "Lazy " .. name,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|