forked from SublimeText/CTags
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCTags.sublime-settings
More file actions
26 lines (25 loc) · 837 Bytes
/
CTags.sublime-settings
File metadata and controls
26 lines (25 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
// All options in here can also be specified in your project settings
// with a prepended "ctags_" for example if you have
//
// "settings":
// {
// "ctags_command": ""echo \":ctags .tags\" | ghci -v0 /path/to/Main.hs"
// }
//
// in your project settings, this will override the settings specified
// in this file and in your user settings.
"debug" : false,
"autocomplete": false,
"command" : "ctags -R -f .tags",
"filters" : {
"source.python": {"type":"^i$"}
},
"definition_filters": {
"source.php": {"type":"^v$"}
},
"definition_current_first": true,
"show_context_menus": true,
"extra_tag_paths" : [ [["source.python", "windows"], "C:\\Python27\\Lib\\tags"]],
"extra_tag_files" : [".gemtags", "tags"]
}