mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 15:07:34 +00:00
feat(cache): update package.loaded on require
This commit is contained in:
parent
b813fae61c
commit
021e54655f
1 changed files with 3 additions and 1 deletions
|
@ -158,7 +158,9 @@ function M.load(modkey, modpath)
|
|||
end
|
||||
|
||||
function M.require(modname)
|
||||
return M.loader(modname)()
|
||||
local mod = M.loader(modname)()
|
||||
package.loaded[modname] = mod
|
||||
return mod
|
||||
end
|
||||
|
||||
---@param modname string
|
||||
|
|
Loading…
Add table
Reference in a new issue