Skip to content

Commit 85e3752

Browse files
committed
fix(ui): always clear complete tasks with the same name when starting a new task
1 parent 5c0c381 commit 85e3752

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lua/lazy/manage/task/init.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ local Process = require("lazy.manage.process")
99
---@class LazyTask
1010
---@field plugin LazyPlugin
1111
---@field name string
12-
---@field type string
1312
---@field output string
1413
---@field status string
1514
---@field error? string
@@ -40,6 +39,10 @@ function Task.new(plugin, name, task, opts)
4039
self.output = ""
4140
self.status = ""
4241
plugin._.tasks = plugin._.tasks or {}
42+
---@param other LazyTask
43+
plugin._.tasks = vim.tbl_filter(function(other)
44+
return other.name ~= name or other:is_running()
45+
end, plugin._.tasks)
4346
table.insert(plugin._.tasks, self)
4447
return self
4548
end

lua/lazy/view/render.lua

-1
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,6 @@ end
338338

339339
---@param task LazyTask
340340
function M:log(task)
341-
-- FIXME: only show last log task
342341
local log = vim.trim(task.output)
343342
if log ~= "" then
344343
local lines = vim.split(log, "\n")

0 commit comments

Comments
 (0)