-
Notifications
You must be signed in to change notification settings - Fork 4
/
Main.sublime-menu
154 lines (148 loc) · 5.15 KB
/
Main.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
[
{
"id": "tools",
"children":
[
{
"caption": "LLDB",
"mnemonic": "l",
"id": "lldb",
"children":
[
// Starting the debugger
{
"caption": "Debug default program",
"command": "lldb_debug_program"
},
{
"caption": "LLDB REPL",
"command": "lldb"
},
{
"caption": "Attach to process",
"command": "lldb_attach_process"
},
{
"caption": "Connect to debugserver",
"command": "lldb_connect_debugserver"
},
{
"caption": "Stop debugging",
"command": "lldb_stop_debugging"
},
// Debugging commands (XCode order)
{
"caption": "-"
},
{
"caption": "Continue",
"command": "lldb_continue"
},
// {
// "caption": "Continue to current line"
// },
{
"caption": "Send Signal",
"command": "lldb_send_signal"
},
{
"caption": "Pause process",
"command": "lldb_pause_process"
},
// Stepping
{
"caption": "-"
},
{
"caption": "Step Over",
"command": "lldb_step_over"
},
{
"caption": "Step Into",
"command": "lldb_step_into"
},
{
"caption": "Step Out",
"command": "lldb_step_out"
},
// Instruction level stepping
{
"caption": "-"
},
{
"caption": "Step Over Instruction",
"command": "lldb_step_over_instruction"
},
{
"caption": "Step Over Thread",
"command": "lldb_step_over_thread"
},
{
"caption": "Step Into Instruction",
"command": "lldb_step_into_instruction"
},
{
"caption": "Step Into Thread",
"command": "lldb_step_into_thread"
},
// Breakpoints
{
"caption": "-"
},
{
"caption": "Add a Breakpoint at Current Line",
"command": "lldb_break_at_line"
},
{
"caption": "Create Symbolic Breakpoint",
"command": "lldb_break_at_symbol"
},
{
"caption": "Toggle Breakpoints",
"command": "lldb_toggle_enable_breakpoints"
},
// Miscellaneous
{
"caption": "-"
},
{
"caption": "Shared Libraries",
"command": "lldb_view_shared_libraries"
},
{
"caption": "Show Registers",
"command": "lldb_register_view"
},
{
"caption": "Show Variables",
"command": "lldb_variable_view"
},
{
"caption": "View Memory",
"command": "lldb_view_memory"
},
{
"caption": "Clear Console",
"command": "lldb_clear_output_view"
},
{
"caption": "Send EOF",
"command": "lldb_send_eof"
},
// Output view commands
{
"caption": "-"
},
{
"caption": "Toggle LLDB output view",
"command": "lldb_toggle_output_view"
},
{
"caption": "Clear LLDB output view",
"command": "lldb_clear_output_view"
}
]
}
]
}
]