large update

This commit is contained in:
2026-02-18 23:21:33 -05:00
parent 7ab9da9c56
commit ded73a5073
20 changed files with 784 additions and 185 deletions

View File

@@ -152,7 +152,7 @@ function M.check(opts)
local remaining = 0
local updates_found = 0
for name, binary in pairs(binaries) do
for name, _ in pairs(binaries) do
remaining = remaining + 2 -- installed version + latest version
local info = {
@@ -216,7 +216,10 @@ function M.check(opts)
elseif not opts.silent then
if updates_found > 0 then
vim.schedule(function()
vim.notify("Glaze: " .. updates_found .. " update(s) available — run :GlazeUpdate", vim.log.levels.INFO)
vim.notify(
"Glaze: " .. updates_found .. " update(s) available — run :GlazeUpdate",
vim.log.levels.INFO
)
end)
else
vim.schedule(function()