diff --git a/lua/lazy/view/render.lua b/lua/lazy/view/render.lua index 00ebd8f..6d0e758 100644 --- a/lua/lazy/view/render.lua +++ b/lua/lazy/view/render.lua @@ -379,7 +379,12 @@ function M:diagnostics(plugin) if skip then return end - if plugin._.updated then + if plugin._.build then + self:diagnostic({ + message = "needs build", + severity = vim.diagnostic.severity.WARN, + }) + elseif plugin._.updated then if plugin._.updated.from == plugin._.updated.to then self:diagnostic({ message = "already up to date", diff --git a/lua/lazy/view/sections.lua b/lua/lazy/view/sections.lua index e2892a2..c9fd9a7 100644 --- a/lua/lazy/view/sections.lua +++ b/lua/lazy/view/sections.lua @@ -33,6 +33,12 @@ return { end, title = "Working", }, + { + filter = function(plugin) + return plugin._.build + end, + title = "Build", + }, { filter = function(plugin) return has_task(plugin, function(task)