Skip to content

Commit 2d06faa

Browse files
committed
feat(loader): incrementally install missing plugins and rebuild spec, so imported specs from plugins work as expected
1 parent 919b7f5 commit 2d06faa

File tree

3 files changed

+43
-17
lines changed

3 files changed

+43
-17
lines changed

lua/lazy/core/loader.lua

+34-10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ local Util = require("lazy.core.util")
22
local Config = require("lazy.core.config")
33
local Handler = require("lazy.core.handler")
44
local Cache = require("lazy.core.cache")
5+
local Plugin = require("lazy.core.plugin")
56

67
local M = {}
78

@@ -26,29 +27,52 @@ function M.setup()
2627
end,
2728
})
2829

30+
-- load the plugins
31+
Plugin.load()
32+
2933
-- install missing plugins
3034
if Config.options.install.missing then
3135
Util.track("install")
32-
for _, plugin in pairs(Config.plugins) do
33-
if not plugin._.installed then
34-
for _, colorscheme in ipairs(Config.options.install.colorscheme) do
35-
if pcall(vim.cmd.colorscheme, colorscheme) then
36-
break
37-
end
38-
end
39-
require("lazy.manage").install({ wait = true, lockfile = true })
40-
break
41-
end
36+
while M.install_missing() do
4237
end
4338
Util.track()
4439
end
4540

41+
-- report any warnings & errors
42+
Config.spec:report()
43+
4644
-- setup handlers
4745
Util.track("handlers")
4846
Handler.setup()
4947
Util.track()
5048
end
5149

50+
-- this will incrementally install missing plugins
51+
-- multiple rounds can happen when importing a spec from a missing plugin
52+
function M.install_missing()
53+
for _, plugin in pairs(Config.plugins) do
54+
if not plugin._.installed then
55+
for _, colorscheme in ipairs(Config.options.install.colorscheme) do
56+
if pcall(vim.cmd.colorscheme, colorscheme) then
57+
break
58+
end
59+
end
60+
require("lazy.manage").install({ wait = true, lockfile = true })
61+
-- remove and installed plugins from indexed, so cache will index again
62+
for _, p in pairs(Config.plugins) do
63+
if p._.installed then
64+
Cache.indexed[p.dir] = nil
65+
end
66+
end
67+
-- clear plugins. no need to merge in this stage
68+
Config.plugins = {}
69+
-- reload plugins
70+
Plugin.load()
71+
return true
72+
end
73+
end
74+
end
75+
5276
-- Startup sequence
5377
-- 1. load any start plugins and do init
5478
function M.startup()

lua/lazy/core/plugin.lua

+9-4
Original file line numberDiff line numberDiff line change
@@ -80,18 +80,23 @@ function Spec:add(plugin, is_dep)
8080
end
8181

8282
function Spec:error(msg)
83-
self:notify(msg, vim.log.levels.ERROR)
83+
self:log(msg, vim.log.levels.ERROR)
8484
end
8585

8686
function Spec:warn(msg)
87-
self:notify(msg, vim.log.levels.WARN)
87+
self:log(msg, vim.log.levels.WARN)
8888
end
8989

9090
---@param msg string
9191
---@param level number
92-
function Spec:notify(msg, level)
92+
function Spec:log(msg, level)
9393
self.notifs[#self.notifs + 1] = { msg = msg, level = level, file = self.importing }
94-
Util.notify(msg, level)
94+
end
95+
96+
function Spec:report()
97+
for _, notif in ipairs(self.notifs) do
98+
Util.notify(notif.msg, notif.level)
99+
end
95100
end
96101

97102
---@param spec LazySpec|LazySpecImport

lua/lazy/init.lua

-3
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ function M.setup(spec, opts)
4949
Config.setup(opts)
5050
Util.track()
5151

52-
-- load the plugins
53-
Plugin.load()
54-
5552
-- setup loader and handlers
5653
Loader.setup()
5754

0 commit comments

Comments
 (0)