forked from ameyp/CscopeSublime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
47 lines (47 loc) · 951 Bytes
/
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
[
{
"caption": "Cscope: Look up symbol",
"command": "cscope",
"args": { "mode": 0 }
},
{
"caption": "Cscope: Look up global definition",
"command": "cscope",
"args": { "mode": 1 }
},
{
"caption": "Cscope: Look up functions called by this function",
"command": "cscope",
"args": { "mode": 2 }
},
{
"caption": "Cscope: Look up functions calling this function",
"command": "cscope",
"args": { "mode": 3 }
},
{
"caption": "Cscope: Search for text string",
"command": "cscope",
"args": { "mode": 4 }
},
{
"caption": "Cscope: Search using egrep pattern",
"command": "cscope",
"args": { "mode": 6 }
},
{
"caption": "Cscope: Find file",
"command": "cscope",
"args": { "mode": 7 }
},
{
"caption": "Cscope: Find files #including a file",
"command": "cscope",
"args": { "mode": 8 }
},
{
"caption": "Cscope: Rebuild database",
"command": "cscope",
"args": { "mode": "database_rebuild" }
}
]