Reputation: 16242
I installed the "tagbar" plugin using Vundle, by addind this to my vimrc:
Bundle 'majutsushi/tagbar'
Version 5.8 of ctags is installed and on my path. I'm using win7. When I try to start tagbar, however, I get this (note: I'm editing a ruby file and executed :TagbarToggle
:
Upvotes: 1
Views: 2407
Reputation: 1959
Check after listing the Bundle
to be sure that all of its files were pulled down by Vundle — ~/.vim/bundle/tagbar/
should exist, and
ls ~/.vim/bundle/tagbar/
should list all of the plugin’s files and directories (autoload/
, doc/
, plugin/
, etc.). (Vundle should do this when :BundleInstall
— or :BundleInstall!
, which updates listed plugins — is run.)
If all of the plugin’s files are there, try running :scriptnames
to see whether they’re all being sourced.
Upvotes: 1