vikingmute
vikingmute

Reputation: 412

An error occurs when using Taglist plugin in vim

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

Answers (3)

Srijan
Srijan

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

Piyush Chauhan
Piyush Chauhan

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

Zsolt Botykai
Zsolt Botykai

Reputation: 51613

What about installing Exuberant ctags to your path? Maybe you should read the installation instructions for your brand new plugin.

Upvotes: 4

Related Questions