We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7722378 commit 79f85e5Copy full SHA for 79f85e5
lua/lazy/core/cache.lua
@@ -231,6 +231,12 @@ function Cache.find(modname, opts)
231
local basename = modname:gsub("%.", "/")
232
local idx = modname:find(".", 1, true)
233
234
+ -- HACK: fix incorrect require statements. Really not a fan of keeping this
235
+ if idx == 1 then
236
+ modname = modname:gsub("^%.+", "")
237
+ basename = modname:gsub("%.", "/")
238
+ idx = modname:find(".", 1, true)
239
+ end
240
local topmod = idx and modname:sub(1, idx - 1) or modname
241
242
-- OPTIM: search for a directory first when topmod == modname
0 commit comments