forked from dishmaev/GoDebug
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Context.sublime-menu
60 lines (60 loc) · 1.92 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
56
57
58
59
60
[{
"id": "dlv_menu",
"caption": "Delve",
"children": [
{ "command": "dlv_test", "caption": "My test"},
{ "caption": "-", "id": "dlv_bkpt" },
{ "command": "dlv_toggle_breakpoint", "caption": "Toggle Breakpoint" },
{ "command": "dlv_start", "caption": "Start Debugging"},
{ "command": "dlv_resume", "caption": "Resume" },
{ "command": "dlv_next", "caption": "Next" },
{ "command": "dlv_step_in", "caption": "Step Into" },
{ "command": "dlv_step_out", "caption": "Step Out" },
{ "command": "dlv_stop", "caption": "Stop"},
{ "command": "dlv_restart", "caption": "Restart"},
{ "command": "dlv_cancel_next", "caption": "Cancel next"},
{ "caption": "-", "id": "dlv_views" },
{
"caption": "Open Breakpoint View",
"command": "dlv_open_breakpoint_view"
},
{
"caption": "Open Stacktrace View",
"command": "dlv_open_stacktrace_view"
},
{
"caption": "Open Goroutinies View",
"command": "dlv_open_goroutine_view"
},
{
"caption": "Open Console View",
"command": "dlv_open_console_view"
},
{
"caption": "Open Variables View",
"command": "dlv_open_variable_view"
},
{
"caption": "Open Watches View",
"command": "dlv_open_watch_view"
},
{ "caption": "-", "id": "dlv_watch" },
{
"caption": "Add watch",
"command": "dlv_add_watch"
},
{
"caption": "Remove watch",
"command": "dlv_remove_watch"
},
{ "caption": "-", "id": "dlv_enable" },
{
"caption": "Enable",
"command": "dlv_enable"
},
{
"caption": "Disable",
"command": "dlv_disable"
}
]
}]