forked from quarnster/SublimeGDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
84 lines (84 loc) · 2.1 KB
/
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
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
[
{
"caption": "Preferences: SublimeGDB Settings – Default",
"command": "open_file", "args":
{
"file": "${packages}/SublimeGDB/SublimeGDB.sublime-settings"
}
},
{
"caption": "Preferences: SublimeGDB Settings – User",
"command": "open_file", "args":
{
"file": "${packages}/User/SublimeGDB.sublime-settings"
}
},
{
"caption": "SublimeGDB: Show Input Field",
"command": "gdb_input"
},
{
"caption": "SublimeGDB: Start Debugging",
"command": "gdb_launch"
},
{
"caption": "SublimeGDB: Continue",
"command": "gdb_continue"
},
{
"caption": "SublimeGDB: Pause",
"command": "gdb_pause"
},
{
"caption": "SublimeGDB: Step Over",
"command": "gdb_step_over"
},
{
"caption": "SublimeGDB: Step Into",
"command": "gdb_step_into"
},
{
"caption": "SublimeGDB: Step Next Instruction",
"command": "gdb_next_instruction"
},
{
"caption": "SublimeGDB: Step Out",
"command": "gdb_step_out"
},
{
"caption": "SublimeGDB: Stop Debugging",
"command": "gdb_exit"
},
{
"caption": "SublimeGDB: Open Register View",
"command": "gdb_open_register_view"
},
{
"caption": "SublimeGDB: Open Session View",
"command": "gdb_open_session_view"
},
{
"caption": "SublimeGDB: Open Console View",
"command": "gdb_open_console_view"
},
{
"caption": "SublimeGDB: Open Callstack View",
"command": "gdb_open_callstack_view"
},
{
"caption": "SublimeGDB: Open Variables View",
"command": "gdb_open_variables_view"
},
{
"caption": "SublimeGDB: Open Disassembly View",
"command": "gdb_open_disassembly_view"
},
{
"caption": "SublimeGDB: Open Breakpoint View",
"command": "gdb_open_breakpoint_view"
},
{
"caption": "SublimeGDB: Open Threads View",
"command": "gdb_open_threads_view"
}
]