mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 06:57:34 +00:00
feat(ui): show updates available
diagnostic when an update is available
This commit is contained in:
parent
8de617c01b
commit
ad0b4caa64
1 changed files with 4 additions and 0 deletions
|
@ -274,6 +274,10 @@ function M:diagnostics(plugin)
|
|||
message = "updated from " .. plugin._.updated.from:sub(1, 7) .. " to " .. plugin._.updated.to:sub(1, 7),
|
||||
})
|
||||
end
|
||||
elseif plugin._.has_updates then
|
||||
self:diagnostic({
|
||||
message = "updates available",
|
||||
})
|
||||
end
|
||||
for _, task in ipairs(plugin._.tasks or {}) do
|
||||
if task:is_running() then
|
||||
|
|
Loading…
Add table
Reference in a new issue