-
Notifications
You must be signed in to change notification settings - Fork 92
/
Default.sublime-keymap
98 lines (97 loc) · 2.7 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[
{
"command": "gdb_edit_register",
"keys": ["enter"],
"context": [{"key": "gdb_running"}, {"key": "gdb_register_view"}]
},
{
"command": "gdb_edit_variable",
"keys": ["enter"],
"context": [{"key": "gdb_running"}, {"key": "gdb_variables_view"}]
},
{
"command": "gdb_expand_variable",
"keys": ["right"],
"context": [{"key": "gdb_running"}, {"key": "gdb_variables_view"}]
},
{
"command": "gdb_collapse_variable",
"keys": ["left"],
"context": [{"key": "gdb_running"}, {"key": "gdb_variables_view"}]
},
{
"command": "gdb_input",
"keys": ["shift+f5"]
},
{
"command": "gdb_raw_input",
"keys": ["ctrl+shift+f5"]
},
{
"command": "gdb_toggle_breakpoint",
"keys": ["f9"]
},
{
"command": "gdb_launch",
"context": [{"key": "gdb_running", "operator": "equal", "operand": false}],
"keys": ["f5"]
},
{
"command": "gdb_exit",
"context": [{"key": "gdb_running", "operator": "equal", "operand": true}],
"keys": ["ctrl+f5"]
},
{
"command": "gdb_continue",
"context": [{"key": "gdb_running", "operator": "equal", "operand": true}],
"keys": ["f5"]
},
{
"command": "gdb_step_over",
"context":
[
{"key": "gdb_running", "operator": "equal", "operand": true},
{"key": "gdb_disassembly_view", "operand": false}
],
"keys": ["f10"]
},
{
"command": "gdb_next_instruction",
"context":
[
{"key": "gdb_running", "operator": "equal", "operand": true},
{"key": "gdb_disassembly_view", "operand": true}
],
"keys": ["f10"]
},
{
"command": "gdb_step_into",
"context": [{"key": "gdb_running", "operator": "equal", "operand": true}],
"keys": ["f11"]
},
{
"command": "gdb_step_out",
"context": [{"key": "gdb_running", "operator": "equal", "operand": true}],
"keys": ["shift+f11"]
},
{
"command": "gdb_open_register_view",
"context": [{"key": "gdb_register_view_open", "operator": "equal", "operand": false }],
"keys": ["ctrl+alt+g"]
},
{
"command": "gdb_open_disassembly_view",
"context": [{"key": "gdb_disassembly_view_open", "operator": "equal", "operand": false }],
"keys": ["ctrl+f11"]
},
{
"command": "gdb_prev_cmd",
"context": [{"key": "gdb_input_view"}],
"keys": ["up"]
},
{
"command": "gdb_next_cmd",
"context": [{"key": "gdb_input_view"}],
"keys": ["down"]
}
]