We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e44636a commit d039aecCopy full SHA for d039aec
lua/lazy/help.lua
@@ -9,9 +9,11 @@ function M.index(plugin)
9
end
10
11
---@param file string
12
- local files = vim.tbl_flatten(vim.tbl_map(function(file)
+ local tbl = vim.tbl_map(function(file)
13
return vim.fn.expand(plugin.dir .. "/" .. file, false, true)
14
- end, Config.options.readme.files))
+ end, Config.options.readme.files)
15
+
16
+ local files = vim.iter and vim.iter(tbl):flatten():totable() or vim.tbl_flatten(tbl)
17
18
---@type table<string,{file:string, tag:string, line:string}>
19
local tags = {}
0 commit comments