mirror of https://github.com/folke/lazy.nvim.git
fix(plugin): work-around for Plugin.values error. Will add proper fix later. Fixes #1124
This commit is contained in:
parent
239f0fa9c1
commit
2270bbbc48
|
@ -556,6 +556,10 @@ function M.load()
|
||||||
Config.plugins[name]._ = plugin._
|
Config.plugins[name]._ = plugin._
|
||||||
Config.plugins[name]._.dep = dep
|
Config.plugins[name]._.dep = dep
|
||||||
Config.plugins[name]._.super = super
|
Config.plugins[name]._.super = super
|
||||||
|
-- FIXME: work-around for changes related to Plugin.values
|
||||||
|
for handler in pairs(Handler) do
|
||||||
|
Config.plugins[name][handler] = plugin[handler]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
Util.track()
|
Util.track()
|
||||||
|
|
Loading…
Reference in New Issue