@@ -238,34 +238,61 @@ function M.walkmods(root, fn, modname)
238
238
end
239
239
240
240
--- @param modname string
241
- function M .get_unloaded_rtp (modname )
242
- modname = modname :gsub (" /" , " ." )
243
- local idx = modname :find (" ." , 1 , true )
244
- local topmod = idx and modname :sub (1 , idx - 1 ) or modname
245
- topmod = M .normname (topmod )
241
+ --- @return string
242
+ function M .topmod (modname )
243
+ return modname :match (" ^[^./]+" ) or modname
244
+ end
245
+
246
+ --- @type table<string , string[]>
247
+ M .unloaded_cache = {}
248
+
249
+ --- @param modname string
250
+ --- @param opts ? { cache ?: boolean }
251
+ function M .get_unloaded_rtp (modname , opts )
252
+ opts = opts or {}
246
253
254
+ local topmod = M .topmod (modname )
255
+ if opts .cache and M .unloaded_cache [topmod ] then
256
+ return M .unloaded_cache [topmod ], true
257
+ end
258
+
259
+ local norm = M .normname (topmod )
260
+
261
+ --- @type string[]
247
262
local rtp = {}
248
263
local Config = require (" lazy.core.config" )
249
264
if Config .spec then
250
265
for _ , plugin in pairs (Config .spec .plugins ) do
251
266
if not (plugin ._ .loaded or plugin .module == false ) then
252
- if topmod == M .normname (plugin .name ) then
267
+ if norm == M .normname (plugin .name ) then
253
268
table.insert (rtp , 1 , plugin .dir )
254
269
else
255
270
table.insert (rtp , plugin .dir )
256
271
end
257
272
end
258
273
end
259
274
end
260
- return rtp
275
+ M .unloaded_cache [topmod ] = rtp
276
+ return rtp , false
261
277
end
262
278
263
279
function M .find_root (modname )
280
+ local paths , cached = M .get_unloaded_rtp (modname , { cache = true })
281
+
264
282
local ret = require (" lazy.core.cache" ).find (modname , {
265
283
rtp = true ,
266
- paths = M . get_unloaded_rtp ( modname ) ,
284
+ paths = paths ,
267
285
patterns = { " " , " .lua" },
268
286
})[1 ]
287
+
288
+ if not ret and cached then
289
+ paths = M .get_unloaded_rtp (modname )
290
+ ret = require (" lazy.core.cache" ).find (modname , {
291
+ rtp = false ,
292
+ paths = paths ,
293
+ patterns = { " " , " .lua" },
294
+ })[1 ]
295
+ end
269
296
if ret then
270
297
local root = ret .modpath :gsub (" /init%.lua$" , " " ):gsub (" %.lua$" , " " )
271
298
return root
0 commit comments