-
Notifications
You must be signed in to change notification settings - Fork 0
/
Side Bar.sublime-menu
50 lines (50 loc) · 1.3 KB
/
Side Bar.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
[
{
"caption": "-",
"id": "side-bar-start-separator"
},
{
"caption": "PHP",
"children": [
{
"caption": "New PHP class...",
"command": "new_php_file",
"args": {
"file": "class.sublime-snippet",
"paths": []
}
},
{
"caption": "Rename PHP class...",
"command": "rename_php_class",
"args": {
"paths": []
}
},
{
"caption": "New Test...",
"command": "new_php_file",
"args": {
"file": "test.sublime-snippet",
"paths": []
}
},
{
"caption": "New Trait...",
"command": "new_php_file",
"args": {
"file": "trait.sublime-snippet",
"paths": []
}
},
{
"caption": "New Interface...",
"command": "new_php_file",
"args": {
"file": "interface.sublime-snippet",
"paths": []
}
},
]
}
]