Skip to content

Commit e5759d2

Browse files
authored
feat(help): allow disabling README magic (#663)
1 parent b3eca0c commit e5759d2

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,7 @@ return {
435435
-- so :help works even for plugins that don't have vim docs.
436436
-- when the readme opens with :help it will be correctly displayed as markdown
437437
readme = {
438+
enabled = true,
438439
root = vim.fn.stdpath("state") .. "/lazy/readme",
439440
files = { "README.md", "lua/**/README.md" },
440441
-- only generate markdown helptags for plugins that dont have docs

lua/lazy/core/config.lua

+1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ M.defaults = {
141141
-- so :help works even for plugins that don't have vim docs.
142142
-- when the readme opens with :help it will be correctly displayed as markdown
143143
readme = {
144+
enabled = true,
144145
root = vim.fn.stdpath("state") .. "/lazy/readme",
145146
files = { "README.md", "lua/**/README.md" },
146147
-- only generate markdown helptags for plugins that dont have docs

lua/lazy/help.lua

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ function M.update()
4141
if Config.plugins["lazy.nvim"] then
4242
vim.cmd.helptags(Config.plugins["lazy.nvim"].dir .. "/doc")
4343
end
44+
if Config.options.readme.enabled == false then
45+
return
46+
end
47+
4448
local docs = Config.options.readme.root .. "/doc"
4549
vim.fn.mkdir(docs, "p")
4650

0 commit comments

Comments
 (0)