mirror of https://github.com/folke/lazy.nvim.git
fix(cache): only autoload when plugins have been parsed. Needed to support `import`
This commit is contained in:
parent
f6b0172e92
commit
0bc73db503
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue