@@ -30,6 +30,7 @@ M.cache = {}
30
30
M .enabled = true
31
31
--- @type string[]
32
32
M .rtp = nil
33
+ M .rtp_total = 0
33
34
M .stats = {
34
35
find = { total = 0 , time = 0 , rtp = 0 , unloaded = 0 , index = 0 , stat = 0 , not_found = 0 },
35
36
autoload = { total = 0 , time = 0 },
@@ -40,8 +41,8 @@ M.me = vim.fn.fnamemodify(M.me, ":p:h:h:h:h"):gsub("\\", "/")
40
41
M .topmods = { lazy = { [M .me ] = M .me } }
41
42
--- @type table<string , true>
42
43
M .indexed = { [M .me ] = true }
43
- M .indexed_rtp = false
44
44
M .indexed_unloaded = false
45
+ M .indexed_rtp = 0
45
46
-- selene:allow(global_usage)
46
47
M ._loadfile = _G .loadfile
47
48
@@ -165,7 +166,7 @@ function M.load(modkey, modpath)
165
166
end
166
167
entry .hash = hash
167
168
168
- if M .debug then
169
+ if M .debug and M . enabled then
169
170
vim .schedule (function ()
170
171
vim .notify (" [cache:load] " .. modpath )
171
172
end )
@@ -192,7 +193,7 @@ function M._index(path)
192
193
--- @type LazyUtilCore
193
194
local Util = package.loaded [" lazy.core.util" ]
194
195
if not Util then
195
- return
196
+ return false
196
197
end
197
198
M .indexed [path ] = true
198
199
Util .ls (path .. " /lua" , function (_ , name , t )
@@ -207,7 +208,9 @@ function M._index(path)
207
208
M .topmods [topname ][path ] = path
208
209
end
209
210
end )
211
+ return true
210
212
end
213
+ return false
211
214
end
212
215
213
216
--- @param modname string
@@ -238,27 +241,34 @@ function M.find(modname)
238
241
local modpath = _find ()
239
242
if not modpath then
240
243
-- 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 ()
244
253
end
245
- M .indexed_rtp = true
246
- modpath = _find ()
247
254
end
248
255
249
256
-- update unloaded
250
257
if not modpath and not M .indexed_unloaded then
258
+ M .indexed_unloaded = true
259
+ local updated = false
251
260
--- @type LazyCoreConfig
252
261
local Config = package.loaded [" lazy.core.config" ]
253
262
if Config then
254
263
for _ , plugin in pairs (Config .plugins ) do
255
264
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
257
266
end
258
267
end
259
268
end
260
- M .indexed_unloaded = true
261
- modpath = _find ()
269
+ if updated then
270
+ modpath = _find ()
271
+ end
262
272
end
263
273
264
274
-- module not found
@@ -273,20 +283,24 @@ end
273
283
274
284
-- returns the cached RTP excluding plugin dirs
275
285
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
277
289
M .rtp = {}
278
290
--- @type table<string,true>
279
291
local skip = {}
280
292
-- 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
283
296
for _ , plugin in pairs (Config .plugins ) do
284
297
if plugin .name ~= " lazy.nvim" then
285
298
skip [plugin .dir ] = true
286
299
end
287
300
end
288
301
end
289
302
for _ , path in ipairs (vim .api .nvim_list_runtime_paths ()) do
303
+ --- @type string
290
304
path = path :gsub (" \\ " , " /" )
291
305
if not skip [path ] and not path :find (" after/?$" ) then
292
306
M .rtp [# M .rtp + 1 ] = path
@@ -309,15 +323,6 @@ function M.setup(opts)
309
323
M .debug = opts and opts .debug
310
324
M .enabled = M .config .enabled
311
325
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
-
321
326
if M .enabled then
322
327
table.insert (package.loaders , 2 , M .loader )
323
328
M .load_cache ()
0 commit comments