aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/docgen.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/docgen.lua')
-rw-r--r--scripts/docgen.lua15
1 files changed, 6 insertions, 9 deletions
diff --git a/scripts/docgen.lua b/scripts/docgen.lua
index f8ddcdb9..1417e345 100644
--- a/scripts/docgen.lua
+++ b/scripts/docgen.lua
@@ -39,15 +39,12 @@ local function indent(n, s)
end
local function make_parts(fns)
- return vim
- .iter(fns)
- :map(function(v)
- if type(v) == 'function' then
- v = v()
- end
- return { v }
- end)
- :totable()
+ return util.tbl_flatten(map_list(fns, function(v)
+ if type(v) == 'function' then
+ v = v()
+ end
+ return { v }
+ end))
end
local function make_section(indentlvl, sep, parts)