Skip to content

Instantly share code, notes, and snippets.

@derfarg
Created June 8, 2012 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save derfarg/2897501 to your computer and use it in GitHub Desktop.
Save derfarg/2897501 to your computer and use it in GitHub Desktop.
Ctags On OSX
Snow Leo ships with ctags not suitable for Ruby development. Ie if you try to generate tags recursively, it will error out:
$ ctags -R
ctags: illegal option -- R
usage: ctags [-BFadtuwvx] [-f tagsfile] file ...
$ which ctags
/usr/bin/ctags
homebrew to the rescue:
$ brew install ctags
==> Downloading http://downloads.sourceforge.net/ctags/ctags-5.8.tar.gz
######################################################################## 100.0%
==> ./configure --prefix=/usr/local/Cellar/ctags/5.8 --enable-macro-patterns --mandir=/usr/local/Cellar/ctags/5.8/share/man --with-readlib
==> make install
/usr/local/Cellar/ctags/5.8: 6 files, 392K, built in 12 seconds
Now we need to alias ctags to use new version:
$ alias ctags="`brew --prefix`/bin/ctags"
And now back to coding:
$ ctags -R
ctags: Warning: ignoring null tag in public/audio/audio-player.js
Dont forget to save ctags alias, ie like this:
$ alias ctags >> ~/.bashrc
And yes, homebrew rocks!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment