Skip to content

Commit d521a25

Browse files
authored
feat(help): accept patterns for readme (#269)
1 parent 11eee43 commit d521a25

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ return {
436436
-- when the readme opens with :help it will be correctly displayed as markdown
437437
readme = {
438438
root = vim.fn.stdpath("state") .. "/lazy/readme",
439-
files = { "README.md" },
439+
files = { "README.md", "lua/**/README.md" },
440440
-- only generate markdown helptags for plugins that dont have docs
441441
skip_if_doc_exists = true,
442442
},

lua/lazy/core/config.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ M.defaults = {
135135
-- when the readme opens with :help it will be correctly displayed as markdown
136136
readme = {
137137
root = vim.fn.stdpath("state") .. "/lazy/readme",
138-
files = { "README.md" },
138+
files = { "README.md", "lua/**/README.md" },
139139
-- only generate markdown helptags for plugins that dont have docs
140140
skip_if_doc_exists = true,
141141
},

lua/lazy/help.lua

+10-5
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,28 @@ function M.index(plugin)
77
if Config.options.readme.skip_if_doc_exists and vim.loop.fs_stat(plugin.dir .. "/doc") then
88
return {}
99
end
10+
local files = vim.tbl_flatten(vim.tbl_map(function(file)
11+
return vim.fn.expand(plugin.dir .. "/" .. file, false, true)
12+
end, Config.options.readme.files))
1013
---@type table<string,{file:string, tag:string, line:string}>
1114
local tags = {}
12-
for _, file in ipairs(Config.options.readme.files) do
13-
file = plugin.dir .. "/" .. file
15+
for _, file in ipairs(files) do
16+
file = Util.norm(file)
1417
if vim.loop.fs_stat(file) then
18+
local rel_file = file:sub(#plugin.dir + 1)
19+
local tag_filename = string.gsub(plugin.name .. vim.fn.fnamemodify(rel_file, ":h:gs?/?-?"), "-$", "")
1520
local lines = vim.split(Util.read_file(file), "\n")
1621
for _, line in ipairs(lines) do
1722
local title = line:match("^#+%s*(.*)")
1823
if title then
19-
local tag = plugin.name .. "-" .. title:lower():gsub("%W+", "-")
24+
local tag = tag_filename .. "-" .. title:lower():gsub("%W+", "-")
2025
tag = tag:gsub("%-+", "-"):gsub("%-$", "")
2126
line = line:gsub("([%[%]/])", "\\%1")
22-
tags[tag] = { tag = tag, line = line, file = plugin.name .. ".md" }
27+
tags[tag] = { tag = tag, line = line, file = tag_filename .. ".md" }
2328
end
2429
end
2530
table.insert(lines, [[<!-- vim: set ft=markdown: -->]])
26-
Util.write_file(Config.options.readme.root .. "/doc/" .. plugin.name .. ".md", table.concat(lines, "\n"))
31+
Util.write_file(Config.options.readme.root .. "/doc/" .. tag_filename .. ".md", table.concat(lines, "\n"))
2732
end
2833
end
2934
return tags

0 commit comments

Comments
 (0)