Installing Exuberant Ctags on Windows (Vista and XP)

kajaco picture kajaco · Apr 14, 2009 · Viewed 38.4k times · Source

I want to use Exuberant Ctags on Vista (and probably the XP laptop) at work; no choice about the OS. I'm use GVim instead of the Flex Builder recommended by my co-worker, because the FB is buggy and doesn't do what GVim does, anyway. I got the zip file here. The Ctags install file says, among other things:

    mk_bc3.mak    For MSDOS using Borland C/C++ 3.x
    mk_bc5.mak    For Win32 using Borland C++ 5.5
    mk_djg.mak    For MSDOS using DJGPP Gnu GCC (better to follow Unix install)
    mk_ming.mak   For Win32 using Mingw32
    mk_mvc.mak    For Win32 using Microsoft Visual C++

I don't really understand what all that means (I have some grasp of each idea individually, but not put together like this), but I chose the last option as sounding Most Likely to Succeed. I opened the command prompt as Administrator, cd'd to the unzipped ec57w32 folder, and typed mk_mvc.mak.

Visual Studio welcomed me to the conversion wizard, offered to make a backup before proceeding to which I assented, and conversion failed. The conversion log says, Cannot load the project due to a corrupt project file. Same thing happened when I downloaded again, unzipped again, and did not make backup files; and also when I tried each of the other mk commands. There weren't any other choices along the way.

What else can I try?

Answer

Ger picture Ger · Apr 13, 2010

The exuberant ctags binary is pre-built and available for download at http://ctags.sourceforge.net/

  1. Unzip the file contents to somewhere like C:\Program Files\ctags
  2. Then add the ctags.exe path to your PATH environment variable.
    1. In XP, right click on My Computer and select Properties.
    2. Move to the Advanced tab and click the Environment Variables button.
    3. Click the System variables select box, find and highlight the Path variable.
    4. Click the Edit button.
    5. Append to the Variable Value ";C:\Program Files\ctags" (without the quotes).

Now in the command shell you should be able to use the command ctags to generate your tags. To create the tags file:

ctags -R "C:\Documents and Settings\My User\My Documents\My Code"

Since you are using vim, you probably want the taglist plugin (which I would link to if I had enough reputation). You do not need to create the tags file to use this plugin.