views:

382

answers:

1

I was trying to install Taglist in VIM and I did not understand this step:

If the exuberant ctags utility is not present in your PATH, then set the Tlist_Ctags_Cmd variable to point to the location of the exuberant ctags utility (not to the directory) in the .vimrc file.

What does it mean? If anybody uses this plugin, could you please help me congfigure it?

I downloaded the ctags and set my variable to

:let Tlist_Ctags_Cmd='C:\Program Files\Vim\ctags-5.7\ctags.exe'

But Im still getting "cannot generate tags" error.

+2  A: 

ctags is a separate program you will need to install on your system.

http://ctags.sourceforge.net/

you'll want to look for install instructions for your specific operating system.

Once thats installed you can set that variable as specified if its not in your PATH

There is what seems to be thorough installation information here.

http://vim-taglist.sourceforge.net/faq.html

michael
I downloaded ctags and set the variable with :let Tlist_Ctags_Cmd='C:\Program Files\Vim\ctags-5.7\ctags.exe'But Im still getting an "Cannot generate tags" error.
kunjaan
Fixed the Problem. Thanks
kunjaan