Skip to content

Commit d039aec

Browse files
authored
fix: use vim.iter():flatten():totable() over vim.tbl_flatten (#1454)
1 parent e44636a commit d039aec

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lua/lazy/help.lua

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ function M.index(plugin)
99
end
1010

1111
---@param file string
12-
local files = vim.tbl_flatten(vim.tbl_map(function(file)
12+
local tbl = vim.tbl_map(function(file)
1313
return vim.fn.expand(plugin.dir .. "/" .. file, false, true)
14-
end, Config.options.readme.files))
14+
end, Config.options.readme.files)
15+
16+
local files = vim.iter and vim.iter(tbl):flatten():totable() or vim.tbl_flatten(tbl)
1517

1618
---@type table<string,{file:string, tag:string, line:string}>
1719
local tags = {}

0 commit comments

Comments
 (0)