-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDefault.sublime-commands
80 lines (80 loc) · 2.26 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[
{
"caption": "SublimeCscope: Find Symbol",
"command": "sc_find_symbol"
},
{
"caption": "SublimeCscope: Find Symbol (Use Buffer)",
"command": "sc_find_symbol",
"args": {"results_to_buffer": true}
},
{
"caption": "SublimeCscope: Find Definition",
"command": "sc_find_definition"
},
{
"caption": "SublimeCscope: Find Definition (Use Buffer)",
"command": "sc_find_definition",
"args": {"results_to_buffer": true}
},
{
"caption": "SublimeCscope: Find Functions Called By This Function",
"command": "sc_find_callees"
},
{
"caption": "SublimeCscope: Find Functions Called By This Function (Use Buffer)",
"command": "sc_find_callees",
"args": {"results_to_buffer": true}
},
{
"caption": "SublimeCscope: Find Functions Calling This Function",
"command": "sc_find_callers"
},
{
"caption": "SublimeCscope: Find Functions Calling This Function (Use Buffer)",
"command": "sc_find_callers",
"args": {"results_to_buffer": true}
},
{
"caption": "SublimeCscope: Find String",
"command": "sc_find_string"
},{
"caption": "SublimeCscope: Find String (Use Buffer)",
"command": "sc_find_string",
"args": {"results_to_buffer": true}
},
{
"caption": "SublimeCscope: Find Pattern",
"command": "sc_find_egrep_pattern"
},{
"caption": "SublimeCscope: Find Pattern (Use Buffer)",
"command": "sc_find_egrep_pattern",
"args": {"results_to_buffer": true}
},
{
"caption": "SublimeCscope: Find Files Including This File",
"command": "sc_find_files_including"
},{
"caption": "SublimeCscope: Find Files Including This File (Use Buffer)",
"command": "sc_find_files_including",
"args": {"results_to_buffer": true}
},
{
"caption": "SublimeCscope: Refresh All Projects",
"command": "sc_refresh_all"
},
{
"caption": "Preferences: SublimeCscope Settings – Default",
"command": "open_file",
"args": {"file": "${packages}/SublimeCscope/SublimeCscope.sublime-settings"}
},
{
"caption": "Preferences: SublimeCscope Settings – User",
"command": "open_file",
"args": {"file": "${packages}/User/SublimeCscope.sublime-settings"}
},
{
"caption": "SublimeCscope: Run Unit Tests (Debug)",
"command": "sc_tests"
}
]