5

When I put a symbolic link to a .txt documentation plugin, vim doesn't show me the help

Example: I have in ~/.vim/doc

 $ ls -al NERD_tree.txt 
 NERD_tree.txt -> PATH/nerdtree/doc/NERD_tree.txt

in vim:

:h NERDtree

This command doesn't show the documentation.

Wuffers
  • 19,619
juanpablo
  • 7,424

1 Answers1

6

Vim needs to know when the help files are updated, so it can know where the NERDtree tag should point. Running the following in vim should fix it:

:helptags ~/.vim/doc
benizi
  • 537