mirror of https://github.com/folke/lazy.nvim.git
fix(spec): dont copy dep and super state from existing plugins
This commit is contained in:
parent
baaf8ddfff
commit
da4e8cc245
|
@ -363,7 +363,11 @@ function M.load()
|
||||||
-- copy state. This wont do anything during startup
|
-- copy state. This wont do anything during startup
|
||||||
for name, plugin in pairs(existing) do
|
for name, plugin in pairs(existing) do
|
||||||
if Config.plugins[name] then
|
if Config.plugins[name] then
|
||||||
|
local dep = Config.plugins[name]._.dep
|
||||||
|
local super = Config.plugins[name]._.super
|
||||||
Config.plugins[name]._ = plugin._
|
Config.plugins[name]._ = plugin._
|
||||||
|
Config.plugins[name]._.dep = dep
|
||||||
|
Config.plugins[name]._.super = super
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
Util.track()
|
Util.track()
|
||||||
|
|
Loading…
Reference in New Issue