6

I've installed Pathogen, git clone'd the syntastic repo, and tried :Helptags in mvim. However, whenever I type :Helptags, I don't get an error but nothing at all happens. Any idea what might be going on?

UPDATE: I've tried again with Vundle (which is working fine with NERDTree and powerline) and am getting the following errors:

a busy cat

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Luke Chang
  • 149
  • 1
  • 1
  • 9

1 Answers1

3

Read :h :helptags, this command (with an argument: :Helptags /path/to/dir) is used to index third party plugin's documentation. It has nothing to do with the Syntastic plugin.

If Pathogen is installed correctly, :h syntastic should open the documentation for Syntastic. Read it carefully, make sure you understand everything, try it and come back to us if you have any question.

romainl
  • 186,200
  • 21
  • 280
  • 313
  • 2
    Switched to Vundle and it worked. For future reference, try :SyntasticCheck or as @romainl said, :h syntastic. Thanks a bunch! Another helpful [post](http://stackoverflow.com/questions/15457887/how-to-set-up-syntastic-for-vim) if you're having trouble. – Luke Chang Jul 10 '13 at 14:49