-
Notifications
You must be signed in to change notification settings - Fork 4
/
Default.sublime-keymap
60 lines (58 loc) · 1.21 KB
/
Default.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
[
{
"command": "lldb",
"keys": ["shift+super+l"]
},
{
"command": "lldb_toggle_output_view",
"keys": ["shift+super+k"]
},
{
"command": "lldb_clear_output_view",
"keys": ["shift+alt+super+k"]
},
// Program ctrl keybindings
{
"command": "lldb_continue",
"keys": ["ctrl+super+y"]
},
// missing: Continue to current line
// missing: send signal
// Stepping
{
"command": "lldb_step_over",
"keys": ["f6"]
},
{
"command": "lldb_step_into",
"keys": ["f7"]
},
{
"command": "lldb_step_out",
"keys": ["f8"]
},
// Instruction level stepping
{
"command": "lldb_step_over_instruction",
"keys": ["ctrl+f6"]
},
{
"command": "lldb_step_over_thread",
"keys": ["ctrl+shift+f6"]
},
{
"command": "lldb_step_into_instruction",
"keys": ["ctrl+f7"]
},
{
"command": "lldb_step_into_thread",
"keys": ["ctrl+shift+f7"]
}
,
// Miscellaneous commands
{
"caption": "View Memory",
"command": "lldb_view_memory",
"keys": ["shift+super+m"]
}
]