-
Notifications
You must be signed in to change notification settings - Fork 2
/
Default.sublime-commands
84 lines (84 loc) · 1.96 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: GoDebug Settings – Default",
"command": "open_file", "args":
{
"file": "${packages}/GoDebug/GoDebug.sublime-settings"
}
},
{
"caption": "Preferences: GoDebug Settings – User",
"command": "open_file", "args":
{
"file": "${packages}/User/GoDebug.sublime-settings"
}
},
{
"caption": "GoDebug: Show Input Field",
"command": "dlv_input"
},
{
"caption": "GoDebug: Start debugging",
"command": "dlv_start"
},
{
"caption": "GoDebug: Resume",
"command": "dlv_resume"
},
{
"caption": "GoDebug: Next",
"command": "dlv_next"
},
{
"caption": "GoDebug: Step Into",
"command": "dlv_step_in"
},
{
"caption": "GoDebug: Step Out",
"command": "dlv_step_out"
},
{
"caption": "GoDebug: Stop",
"command": "dlv_stop"
},
{
"caption": "GoDebug: Restart",
"command": "dlv_restart"
},
{
"caption": "GoDebug: Cancel next",
"command": "dlv_cancel_next"
},
{
"caption": "GoDebug: Enable",
"command": "dlv_enable"
},
{
"caption": "GoDebug: Disable",
"command": "dlv_disable"
},
{
"caption": "GoDebug: Open Breakpoint View",
"command": "dlv_open_breakpoint_view"
},
{
"caption": "GoDebug: Open Stacktrace View",
"command": "dlv_open_stacktrace_view"
},
{
"caption": "GoDebug: Open Goroutinies View",
"command": "dlv_open_goroutine_view"
},
{
"caption": "GoDebug: Open Console View",
"command": "dlv_open_console_view"
},
{
"caption": "GoDebug: Open Variables View",
"command": "dlv_open_variable_view"
},
{
"caption": "GoDebug: Open Watches View",
"command": "dlv_open_watch_view"
},
]