Skip to content

Commit 9cf7459

Browse files
committed
feat(task): build procs can now yield a LazyMsg for more control
1 parent ec95702 commit 9cf7459

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lua/lazy/manage/task/init.lua

+6-2
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,13 @@ function Task:_run(task)
112112
task(self, self._opts)
113113
end
114114

115-
---@param msg string|string[]
115+
---@param msg string|string[]|LazyMsg
116116
---@param level? number
117117
function Task:log(msg, level)
118+
if type(msg) == "table" and msg.msg then
119+
level = msg.level or level
120+
msg = msg.msg
121+
end
118122
level = level or vim.log.levels.DEBUG
119123
self._level = math.max(self._level or 0, level or 0)
120124
msg = type(msg) == "table" and table.concat(msg, "\n") or msg
@@ -170,8 +174,8 @@ function Task:_done()
170174
if self._opts.on_done then
171175
self._opts.on_done(self)
172176
end
177+
self:render()
173178
vim.schedule(function()
174-
self:render()
175179
vim.api.nvim_exec_autocmds("User", {
176180
pattern = "LazyPlugin" .. self.name:sub(1, 1):upper() .. self.name:sub(2),
177181
data = { plugin = self.plugin.name },

0 commit comments

Comments
 (0)