mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-18 20:36:45 +00:00
fix(plugin): properly pass is_list for recursively merging props
This commit is contained in:
parent
e89acede13
commit
355312eb51
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue