mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 15:07:34 +00:00
fix(plugin): work-around for Plugin.values error. Will add proper fix later. Fixes #1124
This commit is contained in:
parent
239f0fa9c1
commit
2270bbbc48
1 changed files with 4 additions and 0 deletions
|
@ -556,6 +556,10 @@ function M.load()
|
|||
Config.plugins[name]._ = plugin._
|
||||
Config.plugins[name]._.dep = dep
|
||||
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
|
||||
Util.track()
|
||||
|
|
Loading…
Add table
Reference in a new issue