We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc4133c commit f6b0172Copy full SHA for f6b0172
lua/lazy/core/cache.lua
@@ -62,7 +62,7 @@ function M.check_path(modname, modpath)
62
63
-- the correct lazy path should be part of rtp.
64
-- so if we get here, this is folke using the local dev instance ;)
65
- if modname and modname:sub(1, 4) == "lazy" then
+ if modname and (modname == "lazy" or modname:sub(1, 5) == "lazy.") then
66
return false
67
end
68
0 commit comments