How can I see the help files from mini plugins when using mini.nvim as a package? #1976
-
Contributing guidelines
Module(s)all of the above QuestionI'm very new to using the mini ecosystem. I used the example init.lua template for mini.deps to get started. https://github.com/nvim-mini/mini.nvim/blob/main/scripts/init-deps-example.lua. It's been working well so far and I have made a few modifications but for some reason I can't see any of the mini help tags when I use the builtin search. As in, if I do I can always go and read the help file on github but it would be nice if I could read it directly in neovim. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The error indicates that there are no tags generated for 'mini.nvim'. This line is responsible for generating tags and should have done it on the first install. You can manually execute |
Beta Was this translation helpful? Give feedback.
The error indicates that there are no tags generated for 'mini.nvim'. This line is responsible for generating tags and should have done it on the first install.
You can manually execute
:helptags ALL
now and:h MiniPick
should work.