Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Exuberant Ctags on Windows (Vista and XP)

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?

like image 704
kajaco Avatar asked Apr 13 '09 22:04

kajaco


People also ask

How do I install exuberant Ctags on Windows?

To install Exuberant Ctags: Go to the following website and download the latest package labeled Source and binary for Windows: http://ctags.sourceforge.net. If the latest binary package is not available for download, go to the Download section and download the binary package for the previous version of Ctags.

What is exuberant Ctags?

Exuberant Ctags (e-ctags) maintained by Darren Hiebert, the ancestor of Universal Ctags, improved traditional ctags with multi-language support, the ability for the user to define new languages searched by regular expressions (called optlib in Universal Ctags), and the ability to generate emacs-style TAGS files.


1 Answers

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.

like image 143
Ger Avatar answered Sep 21 '22 21:09

Ger