This repository was archived by the owner on Nov 15, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathMain.sublime-menu
More file actions
57 lines (57 loc) · 1.53 KB
/
Main.sublime-menu
File metadata and controls
57 lines (57 loc) · 1.53 KB
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
[
{
"caption": "调试",
"mnemonic": "z",
"id": "Debug",
"children":
[
{
"command": "xdebug_run_with_debug",
"caption": "运行并调试"
},
{
"command": "xdebug_close_listen",
"caption": "停止调试"
},
{
"id": "debugstart",
"caption": "-"
},
{
"caption": "设置断点",
"command": "xdebug_breakpoint"
},
{
"caption": "跳进断点",
"command": "xdebug_continue",
"args": {"state": "step_into"}
},
{
"caption": "跳出断点",
"command": "xdebug_continue",
"args": {"state": "step_over"}
},
{
"caption": "跳过断点",
"command": "xdebug_continue",
"args": {"state": "step_out"}
},
{
"id": "debugend",
"caption": "-"
},
{
"caption": "查看调试状态",
"command": "xdebug_status"
},
{
"caption": "输入调试命令",
"command": "xdebug_execute"
},
{
"caption": "清除所有断点",
"command": "xdebug_clear_all_breakpoints"
},
]
}
]