Reputation: 412
I am new to vim , I installed a plugin named Taglist from here
When I restart my vim, a error happens:
Taglist: Exuberant ctags (http://ctags.sf.net) not found in PATH. Plugin is not loaded.
How to solve this?
Upvotes: 10
Views: 6585
Reputation: 1284
I am guessing you did not install ctags. The installation instructions skip that. If you are on ubuntu or similar debian based OS do:
sudo apt-get install ctags
Upvotes: 31
Reputation: 1543
I installed amix/vimrc on my new fedora 19 installation and encountered with same error regarding ctags.
I ran this command to resolve my error on fedora 19 - Red Hat Based Distribution
yum install ctags
Upvotes: 2
Reputation: 51613
What about installing Exuberant ctags to your path
? Maybe you should read the installation instructions for your brand new plugin.
Upvotes: 4