Skip to content

Commit 870d892

Browse files
committed
fix: recalculate loaders on config file change
1 parent 38e2711 commit 870d892

File tree

2 files changed

+32
-48
lines changed

2 files changed

+32
-48
lines changed

lua/lazy/core/loader.lua

+24-42
Original file line numberDiff line numberDiff line change
@@ -18,38 +18,31 @@ M.loaders = nil
1818
---@type LazyPlugin[]
1919
M.loading = {}
2020

21-
---@param plugin LazyPlugin
22-
function M.add(plugin)
23-
if plugin.init or (plugin.opt == false) then
24-
table.insert(M.loaders.init, plugin.name)
21+
function M.get_loaders()
22+
---@type table<LoaderType, table<string, string[]>>|{init: string[]}
23+
local loaders = { init = {} }
24+
for _, lt in ipairs(M.types) do
25+
loaders[lt] = {}
2526
end
26-
27-
for _, loader_type in ipairs(M.types) do
28-
---@type (string|string[])?
29-
local loaders = plugin[loader_type]
30-
if plugin[loader_type] then
31-
loaders = type(loaders) == "table" and loaders or { loaders }
32-
---@cast loaders string[]
33-
for _, loader in ipairs(loaders) do
34-
if not M.loaders[loader_type][loader] then
35-
M.loaders[loader_type][loader] = {}
27+
for _, plugin in pairs(Config.plugins) do
28+
if plugin.init or (plugin.opt == false) then
29+
table.insert(loaders.init, plugin.name)
30+
end
31+
for _, lt in ipairs(M.types) do
32+
if plugin[lt] then
33+
---@diagnostic disable-next-line: no-unknown
34+
for _, loader in ipairs(type(plugin[lt]) == "table" and plugin[lt] or { plugin[lt] }) do
35+
loaders[lt][loader] = loaders[lt][loader] or {}
36+
table.insert(loaders[lt][loader], plugin.name)
3637
end
37-
table.insert(M.loaders[loader_type][loader], plugin.name)
3838
end
3939
end
4040
end
41+
return loaders
4142
end
4243

4344
function M.setup()
44-
if not M.loaders then
45-
M.loaders = { init = {} }
46-
for _, type in ipairs(M.types) do
47-
M.loaders[type] = {}
48-
end
49-
for _, plugin in pairs(Config.plugins) do
50-
M.add(plugin)
51-
end
52-
end
45+
M.loaders = M.loaders or M.get_loaders()
5346

5447
local group = vim.api.nvim_create_augroup("lazy_loader", {
5548
clear = true,
@@ -167,53 +160,42 @@ end
167160
---@param modname string
168161
function M.module(modname)
169162
local idx = modname:find(".", 1, true) or #modname + 1
170-
171163
while idx do
172164
local name = modname:sub(1, idx - 1)
173165
local plugins = M.loaders.module[name]
174166
if plugins then
167+
M.loaders.module[name] = nil
175168
local reason = { require = modname }
176169
if #M.loading == 0 then
177170
local f = 3
178171
while not reason.source do
179172
local info = debug.getinfo(f, "S")
180-
f = f + 1
181173
if not info then
182174
break
183175
end
184176
if info.what ~= "C" then
185177
reason.source = info.source:sub(2)
186178
end
179+
f = f + 1
187180
end
188181
end
189182
M.load(plugins, reason)
190183
end
191184
idx = modname:find(".", idx + 1, true)
192185
end
193-
194-
---@diagnostic disable-next-line: no-unknown
195-
local mod = package.loaded[modname]
196-
if type(mod) == "table" then
197-
return function()
198-
return mod
199-
end
200-
end
201186
end
202187

203188
---@param plugins string|LazyPlugin|string[]|LazyPlugin[]
204189
---@param reason {[string]:string}
205190
---@param opts? {load_start: boolean}
206191
function M.load(plugins, reason, opts)
207-
if type(plugins) == "string" or plugins.name then
208-
---@diagnostic disable-next-line: assign-type-mismatch
209-
plugins = { plugins }
210-
end
211-
192+
---@diagnostic disable-next-line: cast-local-type
193+
plugins = type(plugins) == "string" or plugins.name and { plugins } or plugins
212194
---@cast plugins (string|LazyPlugin)[]
195+
213196
for _, plugin in ipairs(plugins) do
214-
if type(plugin) == "string" then
215-
plugin = Config.plugins[plugin]
216-
end
197+
plugin = type(plugin) == "string" and Config.plugins[plugin] or plugin
198+
---@cast plugin LazyPlugin
217199

218200
if not plugin.loaded then
219201
---@diagnostic disable-next-line: assign-type-mismatch

lua/lazy/core/plugin.lua

+8-6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ local M = {}
99
local skip = { installed = true, loaded = true, tasks = true, dirty = true, dir = true }
1010
local funs = { config = true, init = true, run = true }
1111

12+
M.dirty = false
13+
1214
---@class LazyPlugin
1315
---@field [1] string
1416
---@field name string display name and name used for plugin config files
@@ -46,7 +48,9 @@ function Spec.load(modname, modpath)
4648
self.plugins = {}
4749
self.modname = modname
4850
self.modpath = modpath
49-
self:normalize(assert(Module.load(modname, modpath)))
51+
local mod, cached = Module.load(modname, modpath)
52+
M.dirty = M.dirty or not cached
53+
self:normalize(assert(mod))
5054
if modname == Config.options.plugins and not self.plugins["lazy.nvim"] then
5155
self:add({ "folke/lazy.nvim", opt = false })
5256
end
@@ -176,12 +180,10 @@ function M.specs(cache)
176180
end
177181

178182
function M.load()
179-
local dirty = false
180-
181183
---@type boolean, LazyState?
182184
local ok, state = pcall(vim.json.decode, Cache.get("cache.state"))
183185
if not (ok and state and vim.deep_equal(Config.options, state.config)) then
184-
dirty = true
186+
M.dirty = true
185187
state = nil
186188
end
187189

@@ -203,7 +205,7 @@ function M.load()
203205
M.update_state()
204206
Util.track()
205207

206-
if dirty then
208+
if M.dirty then
207209
Cache.dirty = true
208210
elseif state then
209211
require("lazy.core.loader").loaders = state.loaders
@@ -215,7 +217,7 @@ function M.save()
215217
local state = {
216218
---@type table<string, LazySpec>
217219
specs = {},
218-
loaders = require("lazy.core.loader").loaders,
220+
loaders = require("lazy.core.loader").get_loaders(),
219221
config = Config.options,
220222
}
221223

0 commit comments

Comments
 (0)