Skip to content

Commit 9997523

Browse files
committed
fix(cache): OptionSet is not triggered during startup, so use #rtp instead to see if it changed
1 parent 370b1b9 commit 9997523

File tree

1 file changed

+28
-23
lines changed

1 file changed

+28
-23
lines changed

lua/lazy/core/cache.lua

+28-23
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ M.cache = {}
3030
M.enabled = true
3131
---@type string[]
3232
M.rtp = nil
33+
M.rtp_total = 0
3334
M.stats = {
3435
find = { total = 0, time = 0, rtp = 0, unloaded = 0, index = 0, stat = 0, not_found = 0 },
3536
autoload = { total = 0, time = 0 },
@@ -40,8 +41,8 @@ M.me = vim.fn.fnamemodify(M.me, ":p:h:h:h:h"):gsub("\\", "/")
4041
M.topmods = { lazy = { [M.me] = M.me } }
4142
---@type table<string, true>
4243
M.indexed = { [M.me] = true }
43-
M.indexed_rtp = false
4444
M.indexed_unloaded = false
45+
M.indexed_rtp = 0
4546
-- selene:allow(global_usage)
4647
M._loadfile = _G.loadfile
4748

@@ -165,7 +166,7 @@ function M.load(modkey, modpath)
165166
end
166167
entry.hash = hash
167168

168-
if M.debug then
169+
if M.debug and M.enabled then
169170
vim.schedule(function()
170171
vim.notify("[cache:load] " .. modpath)
171172
end)
@@ -192,7 +193,7 @@ function M._index(path)
192193
---@type LazyUtilCore
193194
local Util = package.loaded["lazy.core.util"]
194195
if not Util then
195-
return
196+
return false
196197
end
197198
M.indexed[path] = true
198199
Util.ls(path .. "/lua", function(_, name, t)
@@ -207,7 +208,9 @@ function M._index(path)
207208
M.topmods[topname][path] = path
208209
end
209210
end)
211+
return true
210212
end
213+
return false
211214
end
212215

213216
---@param modname string
@@ -238,27 +241,34 @@ function M.find(modname)
238241
local modpath = _find()
239242
if not modpath then
240243
-- update rtp
241-
if not M.indexed_rtp then
242-
for _, path in ipairs(vim.api.nvim_list_runtime_paths()) do
243-
M._index(path)
244+
local rtp = vim.api.nvim_list_runtime_paths()
245+
if #rtp ~= M.indexed_rtp then
246+
M.indexed_rtp = #rtp
247+
local updated = false
248+
for _, path in ipairs(rtp) do
249+
updated = M._index(path) or updated
250+
end
251+
if updated then
252+
modpath = _find()
244253
end
245-
M.indexed_rtp = true
246-
modpath = _find()
247254
end
248255

249256
-- update unloaded
250257
if not modpath and not M.indexed_unloaded then
258+
M.indexed_unloaded = true
259+
local updated = false
251260
---@type LazyCoreConfig
252261
local Config = package.loaded["lazy.core.config"]
253262
if Config then
254263
for _, plugin in pairs(Config.plugins) do
255264
if not (M.indexed[plugin.dir] or plugin._.loaded or plugin.module == false) then
256-
M._index(plugin.dir)
265+
updated = M._index(plugin.dir) or updated
257266
end
258267
end
259268
end
260-
M.indexed_unloaded = true
261-
modpath = _find()
269+
if updated then
270+
modpath = _find()
271+
end
262272
end
263273

264274
-- module not found
@@ -273,20 +283,24 @@ end
273283

274284
-- returns the cached RTP excluding plugin dirs
275285
function M.get_rtp()
276-
if not M.rtp then
286+
local rtp = vim.api.nvim_list_runtime_paths()
287+
if not M.rtp or #rtp ~= M.rtp_total then
288+
M.rtp_total = #rtp
277289
M.rtp = {}
278290
---@type table<string,true>
279291
local skip = {}
280292
-- only skip plugins once Config has been setup
281-
if package.loaded["lazy.core.config"] then
282-
local Config = require("lazy.core.config")
293+
---@type LazyCoreConfig
294+
local Config = package.loaded["lazy.core.config"]
295+
if Config then
283296
for _, plugin in pairs(Config.plugins) do
284297
if plugin.name ~= "lazy.nvim" then
285298
skip[plugin.dir] = true
286299
end
287300
end
288301
end
289302
for _, path in ipairs(vim.api.nvim_list_runtime_paths()) do
303+
---@type string
290304
path = path:gsub("\\", "/")
291305
if not skip[path] and not path:find("after/?$") then
292306
M.rtp[#M.rtp + 1] = path
@@ -309,15 +323,6 @@ function M.setup(opts)
309323
M.debug = opts and opts.debug
310324
M.enabled = M.config.enabled
311325

312-
-- reset rtp when it changes
313-
vim.api.nvim_create_autocmd("OptionSet", {
314-
pattern = "runtimepath",
315-
callback = function()
316-
M.rtp = nil
317-
M.indexed_rtp = false
318-
end,
319-
})
320-
321326
if M.enabled then
322327
table.insert(package.loaders, 2, M.loader)
323328
M.load_cache()

0 commit comments

Comments
 (0)