File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,12 @@ function M.loader(modname)
88
88
89
89
local chunk , err
90
90
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
91
97
chunk , err = M .load (modname , entry .modpath )
92
98
else
93
99
-- find the modpath and load the module
Original file line number Diff line number Diff line change @@ -36,10 +36,10 @@ local M = {}
36
36
--- @field pin ? boolean
37
37
38
38
--- @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 ?
43
43
--- @field enabled ? boolean | (fun (): boolean )
44
44
--- @field lazy ? boolean
45
45
--- @field dev ? boolean If set , then link to the respective folder under your ~/projects
You can’t perform that action at this time.
0 commit comments