After reading Mislav Marohnić's excellent post on Vim, I decided to add ctags to my development environment. What does it buy you? It allows you to jump to method or class definitions with these commands:
Setup is pretty easy:
You can generate tags with:
But you probably won't want to do all that manually. As Mislav points out in his post, Tim Pope shows us how to automate tag generation with git hooks.
I've been using ctags this afternoon and already it has turned Vim into a completely different editor for me.