Currently I use Pathogen to organize my vim plugins. It seems to do this fine and without a hitch but for some reason the helptags are not generated. I don't think my file structure is at fault (although it could be) because as far as I can tell I've set it up correctly, e.g: pathogen.vim
is in ~/.vim/autoload
and all my plugins are in ~/.vim/bundle
My .vimrc
is aliased to the HOME
directory so I can quickly find it and open it and the pathogen related part looks like this:
filetype off
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
I feel like I've tried every iteration of this I've found on the internet as well and nothing has been successful. The plugins seem to work just fine every time but I can never get the help docs using the helptags. I'm using Mac OSX 10.6 if that helps.
Any advice is appreciated. Thanks.
filetype off
below thecalls
. In other words put pathogen stuff at the top of the.vimrc
– Garrattset nocompatible
. You might try adding that too. – Claypoolbundle
files are invimfiles
instead ofvim74
or whatever it is. All the plugins will work if they're invim74
, but not:Helptags
. – Sham