-
Notifications
You must be signed in to change notification settings - Fork 89
/
Context.sublime-menu
83 lines (83 loc) · 2.42 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[
{
"caption": "Xdebug",
"children":
[
{
"caption": "Add/Remove Breakpoint",
"command": "xdebug_breakpoint"
},
{
"caption": "Set Conditional Breakpoint",
"command": "xdebug_conditional_breakpoint"
},
{
"caption": "Clear Breakpoints",
"command": "xdebug_clear_breakpoints"
},
{
"caption": "Clear All Breakpoints",
"command": "xdebug_clear_all_breakpoints"
},
{
"caption": "-"
},
{
"caption": "Set Watch Expression",
"command": "xdebug_watch"
},
{
"caption": "Edit Watch Expression",
"command": "xdebug_watch",
"args" : {"edit" : true}
},
{
"caption": "Remove Watch Expression",
"command": "xdebug_watch",
"args" : {"remove" : true}
},
{
"caption": "Clear Watch Expressions",
"command": "xdebug_watch",
"args" : {"clear" : true}
},
{
"caption": "-"
},
{
"caption": "Run",
"command": "xdebug_continue",
"args" : {"command" : "run"}
},
{
"caption": "Run To Line",
"command": "xdebug_run_to_line"
},
{
"caption": "Step Over",
"command": "xdebug_continue",
"args" : {"command" : "step_over"}
},
{
"caption": "Step Into",
"command": "xdebug_continue",
"args" : {"command" : "step_into"}
},
{
"caption": "Step Out",
"command": "xdebug_continue",
"args" : {"command" : "step_out"}
},
{
"caption": "Stop",
"command": "xdebug_continue",
"args" : {"command" : "stop"}
},
{
"caption": "Detach",
"command": "xdebug_continue",
"args" : {"command" : "detach"}
}
]
}
]