Created
May 28, 2014 15:58
-
-
Save ivpusic/f84b84ee4654b29c2112 to your computer and use it in GitHub Desktop.
small config for sublime ctags
This file contains 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
// Place your settings in the file "User/CTags.sublime-settings", which | |
// overrides the settings in here. | |
{ | |
// Enable debugging | |
"debug": false, | |
// Enable autocomplete | |
"autocomplete": true, | |
// Set to false to disable recursive search for ctag generation. This | |
// translates the `-R` parameter | |
"recursive" : true, | |
// Default read/write location of the tags file. This translates to the | |
// `-f [FILENAME]` parameter | |
"tag_file" : ".tags", | |
// Additional options to pass to ctags, i.e. | |
// ["--exclude=some/path", "--exclude=some/other/path", ...] | |
"opts" : ["--exclude='node_modules'", | |
"--exclude='bower_components'", | |
"--exclude='.tmp'", | |
"--exclude='public'" | |
], | |
"extra_tag_files": ["ember_tags"], | |
// Show the ctags menu in the context menus | |
"show_context_menus": true, | |
// Set to false so as not to select searched symbol (in Vintage mode) | |
"select_searched_symbol": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment