From f360e336a5e2b57e1ee0232c9c89a4ceb3617798 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Fri, 23 Dec 2022 13:13:28 +0100 Subject: [PATCH] fix(help): make sure we always generate lazy helptags --- lua/lazy/help.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/lazy/help.lua b/lua/lazy/help.lua index d13174b..d2eba65 100644 --- a/lua/lazy/help.lua +++ b/lua/lazy/help.lua @@ -29,6 +29,7 @@ function M.index(plugin) end function M.update() + vim.cmd.helptags(Config.plugins["lazy.nvim"].dir .. "/doc") local docs = Config.options.readme.root .. "/doc" vim.fn.mkdir(docs, "p")