Skip to content

Commit

Permalink
fix(plugin): properly pass is_list for recursively merging props
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Mar 7, 2023
1 parent e89aced commit 355312e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazy/core/plugin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ end
---@param is_list? boolean
function M.values(plugin, prop, is_list)
---@type table
local ret = plugin._.super and M.values(plugin._.super, prop) or {}
local ret = plugin._.super and M.values(plugin._.super, prop, is_list) or {}
local values = rawget(plugin, prop)

if not values then
Expand Down

0 comments on commit 355312e

Please sign in to comment.