forked from martomo/SublimeTextXdebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
121 lines (121 loc) · 3.28 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
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
[
{
"caption": "Xdebug: Start Debugging",
"command": "xdebug_session_start"
},
{
"caption": "Xdebug: Start Debugging (Launch Browser)",
"command": "xdebug_session_start",
"args" : {"launch_browser" : true}
},
{
"caption": "Xdebug: Stop Debugging",
"command": "xdebug_session_stop"
},
{
"caption": "Xdebug: Stop Debugging (Launch Browser)",
"command": "xdebug_session_stop",
"args" : {"launch_browser" : true}
},
{
"caption": "Xdebug: Stop Debugging (Close Windows)",
"command": "xdebug_session_stop",
"args" : {"close_windows" : true}
},
{
"caption": "Xdebug: Add/Remove Breakpoint",
"command": "xdebug_breakpoint"
},
{
"caption": "Xdebug: Set Conditional Breakpoint",
"command": "xdebug_conditional_breakpoint"
},
{
"caption": "Xdebug: Clear Breakpoints",
"command": "xdebug_clear_breakpoints"
},
{
"caption": "Xdebug: Set Watch Expression",
"command": "xdebug_watch"
},
{
"caption": "Xdebug: Edit Watch Expression",
"command": "xdebug_watch",
"args" : {"edit" : true}
},
{
"caption": "Xdebug: Remove Watch Expression",
"command": "xdebug_watch",
"args" : {"remove" : true}
},
{
"caption": "Xdebug: Clear Watch Expressions",
"command": "xdebug_watch",
"args" : {"clear" : true}
},
{
"caption": "Xdebug: Session - Evaluate",
"command": "xdebug_evaluate"
},
{
"caption": "Xdebug: Session - Execute",
"command": "xdebug_user_execute"
},
{
"caption": "Xdebug: Session - Status",
"command": "xdebug_status"
},
{
"caption": "Xdebug: Breakpoint - Run",
"command": "xdebug_continue",
"args" : {"command" : "run"}
},
{
"caption": "Xdebug: Breakpoint - Run To Line",
"command": "xdebug_run_to_line"
},
{
"caption": "Xdebug: Breakpoint - Step Over",
"command": "xdebug_continue",
"args" : {"command" : "step_over"}
},
{
"caption": "Xdebug: Breakpoint - Step Into",
"command": "xdebug_continue",
"args" : {"command" : "step_into"}
},
{
"caption": "Xdebug: Breakpoint - Step Out",
"command": "xdebug_continue",
"args" : {"command" : "step_out"}
},
{
"caption": "Xdebug: Breakpoint - Stop",
"command": "xdebug_continue",
"args" : {"command" : "stop"}
},
{
"caption": "Xdebug: Breakpoint - Detach",
"command": "xdebug_continue",
"args" : {"command" : "detach"}
},
{
"caption": "Xdebug: Close Windows",
"command": "xdebug_layout",
"args" : {"close_windows" : true}
},
{
"caption": "Xdebug: Restore Layout",
"command": "xdebug_layout",
"args" : {"restore" : true}
},
{
"caption": "Preferences: Xdebug Settings – Default",
"command": "xdebug_settings"
},
{
"caption": "Preferences: Xdebug Settings – User",
"command": "open_file",
"args" : {"file" : "${packages}/User/Xdebug.sublime-settings"}
}
]