Skip to content

Instantly share code, notes, and snippets.

@wtowns
Created June 8, 2011 17:20
Show Gist options
  • Select an option

  • Save wtowns/1014861 to your computer and use it in GitHub Desktop.

Select an option

Save wtowns/1014861 to your computer and use it in GitHub Desktop.
Generate ctags
ctags --recurse --extra="+fq" --fields="+Si"
+f creates a tags entry for the file itself, useful to jump to a file
+q adds class-qualified tags for each member of a class. The ctags docs say that this is only implemented for C++, Java and Eiffel. It works in C#, I presume, because C#'s syntax is close to Java in this respect.
--fields="+Si"
+S causes signature info to show up in :tselect
+i causes inheritance info to show up in :tselect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment