fix(scripts): use compatible tbl_flatten in docgen (#3171)

This commit is contained in:
glepnir 2024-05-23 15:18:03 +08:00 committed by GitHub
parent eadcee1573
commit 772b01a1de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,15 +39,12 @@ local function indent(n, s)
end end
local function make_parts(fns) local function make_parts(fns)
return vim return util.tbl_flatten(map_list(fns, function(v)
.iter(fns) if type(v) == 'function' then
:map(function(v) v = v()
if type(v) == 'function' then end
v = v() return { v }
end end))
return { v }
end)
:totable()
end end
local function make_section(indentlvl, sep, parts) local function make_section(indentlvl, sep, parts)