mirror of https://github.com/folke/lazy.nvim.git
45 lines
1.1 KiB
Lua
45 lines
1.1 KiB
Lua
local Util = require("lazy.util")
|
|
local Loader = require("lazy.core.loader")
|
|
|
|
---@type table<string, LazyTaskDef>
|
|
local M = {}
|
|
|
|
M.run = {
|
|
skip = function(plugin)
|
|
return not (plugin._.dirty and (plugin.opt == false or plugin.run))
|
|
end,
|
|
run = function(self)
|
|
Loader.load(self.plugin, { task = "run" }, { load_start = true })
|
|
|
|
local run = self.plugin.run
|
|
if run then
|
|
if type(run) == "string" and run:sub(1, 1) == ":" then
|
|
local cmd = vim.api.nvim_parse_cmd(run:sub(2), {})
|
|
self.output = vim.api.nvim_cmd(cmd, { output = true })
|
|
elseif type(run) == "function" then
|
|
run()
|
|
else
|
|
local args = vim.split(run, "%s+")
|
|
return self:spawn(table.remove(args, 1), {
|
|
args = args,
|
|
cwd = self.plugin.dir,
|
|
})
|
|
end
|
|
end
|
|
end,
|
|
}
|
|
|
|
M.docs = {
|
|
skip = function(plugin)
|
|
return not plugin._.dirty
|
|
end,
|
|
run = function(self)
|
|
local docs = self.plugin.dir .. "/doc/"
|
|
if Util.file_exists(docs) then
|
|
self.output = vim.api.nvim_cmd({ cmd = "helptags", args = { docs } }, { output = true })
|
|
end
|
|
end,
|
|
}
|
|
|
|
return M
|