fix(cache): only autoload when plugins have been parsed. Needed to support `import`

This commit is contained in:
Folke Lemaitre 2023-01-02 12:54:38 +01:00
parent f6b0172e92
commit 0bc73db503
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 7 additions and 4 deletions

View File

@ -81,11 +81,14 @@ function M.check_autoload(modname, modpath)
if plugin and modpath:find(plugin.dir, 1, true) == 1 then if plugin and modpath:find(plugin.dir, 1, true) == 1 then
-- we're not interested in loader time, so calculate delta here -- we're not interested in loader time, so calculate delta here
M.stats.autoload.time = M.stats.autoload.time + uv.hrtime() - start M.stats.autoload.time = M.stats.autoload.time + uv.hrtime() - start
if not plugin._.loaded then -- only autoload when plugins have been loaded
if plugin.module == false then if #require("lazy.core.config").plugins > 0 then
error("Plugin " .. plugin.name .. " is not loaded and is configured with module=false") if not plugin._.loaded then
if plugin.module == false then
error("Plugin " .. plugin.name .. " is not loaded and is configured with module=false")
end
require("lazy.core.loader").load(plugin, { require = modname })
end end
require("lazy.core.loader").load(plugin, { require = modname })
end end
return true return true
end end