Skip to content

Commit

Permalink
fix(loader): dont clear tasks when istalling missing plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed May 17, 2023
1 parent aba872e commit 80c4dec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazy/core/loader.lua
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function M.install_missing()
break
end
end
require("lazy.manage").install({ wait = true, lockfile = true })
require("lazy.manage").install({ wait = true, lockfile = true, clear = false })
-- remove any installed plugins from indexed, so cache will index again
for _, p in pairs(Config.plugins) do
if p._.installed then
Expand Down

0 comments on commit 80c4dec

Please sign in to comment.