Skip to content

Commit ffabe91

Browse files
committed
fix(cache): if mod is loaded already in the loader, then return that
1 parent 316503f commit ffabe91

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

lua/lazy/core/cache.lua

+6
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@ function M.loader(modname)
8888

8989
local chunk, err
9090
if entry and M.check_path(modname, entry.modpath) then
91+
local mod = package.loaded[modname]
92+
if type(mod) == "table" then
93+
return function()
94+
return mod
95+
end
96+
end
9197
chunk, err = M.load(modname, entry.modpath)
9298
else
9399
-- find the modpath and load the module

lua/lazy/core/plugin.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ local M = {}
3636
---@field pin? boolean
3737

3838
---@class LazyPlugin: LazyPluginHandlers,LazyPluginHooks,LazyPluginRef
39-
---@field [1] string
40-
---@field name string display name and name used for plugin config files
41-
---@field url string
42-
---@field dir string
39+
---@field [1] string?
40+
---@field name string? display name and name used for plugin config files
41+
---@field url string?
42+
---@field dir string?
4343
---@field enabled? boolean|(fun():boolean)
4444
---@field lazy? boolean
4545
---@field dev? boolean If set, then link to the respective folder under your ~/projects

0 commit comments

Comments
 (0)