CTags with Vim, the Quick Version
sudo apt-get install ctags
(Debian/Ubuntu Linux), orbrew install ctags
(OS X).- In
~/.vimrc
, addset tags=tags
- Go to your project directory, and run
ctags -R
- When editing, put your cursor over a variable, method or class and hit
Ctrl-]
to jump to its definition.
(Bonus step: Go back to secretly coveting Intellisense.)