Skip to content

Instantly share code, notes, and snippets.

@underhilllabs
Created February 27, 2012 06:16
Show Gist options
  • Save underhilllabs/1921869 to your computer and use it in GitHub Desktop.
Save underhilllabs/1921869 to your computer and use it in GitHub Desktop.
vim navigation with tags
# create a tags file
ctags *.java
# inside vim, jump to where function under cursor is defined
^[
# this will open the functions definition. When you want to return:
^T
# You can hop to several function definitions, say 3, then return with:
^T ^T ^T
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment