mirror of https://github.com/folke/lazy.nvim.git
fix(checker): update updated after every manage operation. Fixes #141
This commit is contained in:
parent
9110371120
commit
86f2c67aa8
|
@ -27,9 +27,7 @@ function M.fast_check(opts)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if opts.report ~= false then
|
M.report(opts.report ~= false)
|
||||||
M.report()
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.check()
|
function M.check()
|
||||||
|
@ -42,7 +40,8 @@ function M.check()
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.report()
|
---@param notify? boolean
|
||||||
|
function M.report(notify)
|
||||||
local lines = {}
|
local lines = {}
|
||||||
M.updated = {}
|
M.updated = {}
|
||||||
for _, plugin in pairs(Config.plugins) do
|
for _, plugin in pairs(Config.plugins) do
|
||||||
|
@ -54,7 +53,7 @@ function M.report()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if #lines > 0 and Config.options.checker.notify then
|
if #lines > 0 and notify and Config.options.checker.notify then
|
||||||
table.insert(lines, 1, "# Plugin Updates")
|
table.insert(lines, 1, "# Plugin Updates")
|
||||||
Util.info(lines)
|
Util.info(lines)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue