-
Notifications
You must be signed in to change notification settings - Fork 38
/
Default (Windows).sublime-keymap
62 lines (61 loc) · 1.12 KB
/
Default (Windows).sublime-keymap
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
[
{
"keys": ["ctrl+\\"],
"command": "show_overlay",
"args":
{
"overlay": "command_palette",
"text": "Cscope: "
}
},
{
// Lookup symbol
"keys": ["ctrl+l", "ctrl+s"],
"command": "cscope",
"args":
{
"mode": 0
}
},
{
// Lookup definition
"keys": ["ctrl+l", "ctrl+d"],
"command": "cscope",
"args":
{
"mode": 1
}
},
{
// Lookup CalleEs
"keys": ["ctrl+l", "ctrl+e"],
"command": "cscope",
"args":
{
"mode": 2
}
},
{
// Lookup CalleRs
"keys": ["ctrl+l", "ctrl+r"],
"command": "cscope",
"args":
{
"mode": 3
}
},
{
// Navigate to results with enter key
"keys": ["enter"],
"command": "cscope_visiter",
"context": [{"key": "selector", "operand": "text.find-in-files"}]
},
{
"keys": ["ctrl+shift+["],
"command": "goback"
},
{
"keys": ["ctrl+shift+]"],
"command": "forward"
}
]