-
Notifications
You must be signed in to change notification settings - Fork 166
/
Default.sublime-commands
46 lines (46 loc) · 1.17 KB
/
Default.sublime-commands
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[
{
"caption": "CTags: Rebuild Tags",
"command": "rebuild_tags"
},
{
"caption": "CTags: Show Symbols (file)",
"command": "show_symbols",
},
{
"caption": "CTags: Show Symbols (current language)",
"command": "show_symbols",
"args": {"type": "lang"}
},
{
"caption": "CTags: Show Symbols (all)",
"command": "show_symbols",
"args": {"type": "multi"}
},
{
"caption": "Preferences: CTags Settings",
"command": "edit_settings", "args":
{
"base_file": "${packages}/CTags/CTags.sublime-settings",
"default": "// CTags Preferences – User\n// ================================================================\n{\n\t$0\n}\n"
}
},
{
"caption": "Preferences: CTags Key Bindings",
"command": "edit_settings", "args":
{
"base_file": "${packages}/CTags/Default.sublime-keymap",
"user_file": "${packages}/CTags/Default ($platform).sublime-keymap",
"default": "[\n\t$0\n]\n"
}
},
{
"caption": "Preferences: CTags Mouse Bindings",
"command": "edit_settings", "args":
{
"base_file": "${packages}/CTags/Default.sublime-mousemap",
"user_file": "${packages}/CTags/Default ($platform).sublime-mousemap",
"default": "[\n\t$0\n]\n"
}
}
]