Skip to content

Instantly share code, notes, and snippets.

@yubrew
Created July 24, 2013 14:32
Show Gist options
  • Save yubrew/6071107 to your computer and use it in GitHub Desktop.
Save yubrew/6071107 to your computer and use it in GitHub Desktop.
ctags on os x
# use ctags on os x
# $ ctags -R
# ctags: illegal option -- R
# assuming you've installed the wonderful os x package manager homebrew
brew install ctags
# add ctags alias
alias ctags="`brew --prefix`/bin/ctags"
# make alias persistent on your machine
alias ctags >> ~/.bash_profile
# references
# http://gmarik.info/blog/2010/10/08/ctags-on-OSX
# http://all-about-mac-osx.blogspot.com/2012/03/update-ctags-with-brew.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment