Skip to content

Commit 261c2d6

Browse files
authored
fix(ui): show full reason for Not-Loaded (#683)
no print
1 parent 690f9e8 commit 261c2d6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lua/lazy/view/render.lua

+3-1
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,11 @@ function M:plugin(plugin)
401401
local reason = {}
402402
for handler in pairs(Handler.types) do
403403
if plugin[handler] then
404+
local trigger = {}
404405
for _, value in ipairs(plugin[handler]) do
405-
reason[handler] = value
406+
table.insert(trigger, type(value) == 'table' and value[1] or value)
406407
end
408+
reason[handler] = table.concat(trigger, ' ')
407409
end
408410
end
409411
for _, other in pairs(Config.plugins) do

0 commit comments

Comments
 (0)