-
Notifications
You must be signed in to change notification settings - Fork 4
/
Default.sublime-commands
88 lines (84 loc) · 2.08 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
85
86
87
88
[
// Test command
//{
// "caption": "LLDB: Surprise me! (Bogus test command)",
// "command": "lldb_bogus"
//},
// Starting/stopping lldb
{
"caption": "LLDB: Show LLDB prompt (starting LLDB if needed)",
"command": "lldb"
},
{
"caption": "LLDB: Start debugging default program.",
"command": "lldb_debug_program"
},
{
"caption": "LLDB: Attach to process",
"command": "lldb_attach_process"
},
{
"caption": "LLDB: Stop debugging",
"command": "lldb_stop_debugging"
},
// Debugging commands
{
"caption": "LLDB: Continue",
"command": "lldb_continue"
},
{
"caption": "LLDB: Pause process",
"command": "lldb_pause_process"
},
{
"caption": "LLDB: Send Signal",
"command": "lldb_send_signal"
},
// Breakpoint commands
{
"caption": "LLDB: Add a Breakpoint at Current Line",
"command": "lldb_break_at_line"
},
{
"caption": "LLDB: Create Symbolic Breakpoint",
"command": "lldb_break_at_symbol"
},
{
"caption": "LLDB: Toggle Breakpoints",
"command": "lldb_toggle_enable_breakpoints"
},
// Miscellaneous commands
{
"caption": "LLDB: View Shared Libraries",
"command": "lldb_view_shared_libraries"
},
{
"caption": "LLDB: Show Registers",
"command": "lldb_register_view"
},
{
"caption": "LLDB: Show Variables",
"command": "lldb_variable_view"
},
{
"caption": "LLDB: Disassemble current frame",
"command": "lldb_disassemble_frame"
},
{
"caption": "LLDB: View Memory",
"command": "lldb_view_memory"
},
{
"caption": "LLDB: Send EOF",
"command": "lldb_send_eof"
},
// Output view related commands
{
"caption": "LLDB: Toggle LLDB output view",
"command": "lldb_toggle_output_view"
},
{
"caption": "LLDB: Clear LLDB output view",
"command": "lldb_clear_output_view"
}
]