Generate vim helptags #68
Labels
No labels
bug
documentation
duplicate
enhancement
help wanted
invalid
maintenance
obsolete
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
yestax/setup#68
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
with coc.nvim package it's impossible to find the help for instance :h coc-configuration since helptags are not generated (see :h helptags)
:helptags ALL can't be executed since the plugin is in the system-wide path (/usr/share)
Executing the generation at post install time result in apt/dnf not owning the files generated and thus letting artifacts.
A solution would be to generate helptags at buildtime and then own the generated files:
$ vim -u NONE -c "helptags /path/to/your/plugin/doc" -c q
-u NONE to skip vimrc loading
Set vim as a build dependancy
the produced file should be named 'tag'
Solved by #95