forked from quarnster/SublimeGDB
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Context.sublime-menu
55 lines (55 loc) · 1.72 KB
/
Context.sublime-menu
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
[{
"id": "gdb_menu",
"caption": "GDB",
"children": [
{ "caption": "-", "id": "breakpoints" },
{ "command": "gdb_toggle_breakpoint", "caption": "Toggle Breakpoint" },
{ "command": "gdb_launch", "caption": "Run"},
{ "command": "gdb_continue", "caption": "Continue" },
{ "command": "gdb_step_over", "caption": "Step Over" },
{ "command": "gdb_step_into", "caption": "Step Into" },
{ "command": "gdb_step_out", "caption": "Step Out" },
{
"caption": "SublimeGDB: Step Next Instruction",
"command": "gdb_next_instruction"
},
{ "command": "gdb_exit", "caption": "Stop Debugging"},
{ "caption": "-", "id": "gdb_views" },
{
"caption": "Open Breakpoint View",
"command": "gdb_open_breakpoint_view"
},
{
"caption": "Open Callstack View",
"command": "gdb_open_callstack_view"
},
{
"caption": "Open Console View",
"command": "gdb_open_console_view"
},
{
"caption": "Open Disassembly View",
"command": "gdb_open_disassembly_view"
},
{
"caption": "Open Register View",
"command": "gdb_open_register_view"
},
{
"caption": "Open Session View",
"command": "gdb_open_session_view"
},
{
"caption": "Open Threads View",
"command": "gdb_open_threads_view"
},
{
"caption": "Open Variables View",
"command": "gdb_open_variables_view"
},
{
"caption": "Add watch",
"command": "gdb_add_watch"
}
]
}]