Created
June 8, 2011 17:20
-
-
Save wtowns/1014861 to your computer and use it in GitHub Desktop.
Generate ctags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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