-
Notifications
You must be signed in to change notification settings - Fork 19
/
Side Bar.sublime-menu
156 lines (156 loc) · 3.29 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
[
{
"caption": "New…",
"command": "fm_create",
"mnemonic": "N",
"args": {
"paths": []
}
},
{
"caption": "Open All",
"command": "fm_open_all",
"mnemonic": "A",
"args": {
"files": []
}
},
{
"caption": "Edit to Right",
"command": "fm_edit_to_the_right",
"mnemonic": "R",
"args": {
"files": []
}
},
{
"caption": "Edit to Left",
"command": "fm_edit_to_the_left",
"mnemonic": "L",
"args": {
"files": []
}
},
{
"caption": "Rename…",
"mnemonic": "R",
"command": "fm_rename_path",
"args": {
"paths": []
}
},
{
"caption": "Move…",
"command": "fm_move",
"mnemonic": "M",
"args": {
"paths": []
}
},
{
"caption": "Duplicate…",
"command": "fm_duplicate",
"mnemonic": "D",
"args": {
"paths": []
}
},
{
"caption": "Delete…",
"command": "fm_delete",
"mnemonic": "e",
"args": {
"paths": []
}
},
{
"caption": "-"
},
{
"mnemonic": "C",
"caption": "Copy…",
"children": [
{
"caption": "Name",
"command": "fm_copy",
"args": {
"which": "name",
"paths": []
}
},
{
"caption": "Absolute Path",
"command": "fm_copy",
"args": {
"which": "absolute path",
"paths": []
}
},
{
"caption": "Path From Root",
"command": "fm_copy",
"args": {
"which": "path from root",
"paths": []
}
},
{
"caption": "Relative Path",
"command": "fm_copy",
"args": {
"which": "relative path",
"paths": []
}
}
]
},
{
"caption": "-"
},
{
"caption": "Open in Explorer",
"command": "fm_open_in_explorer",
"mnemonic": "O",
"args": {
"visible_on_platforms": ["windows", "linux"],
"paths": []
}
},
{
"caption": "Open in Finder",
"command": "fm_open_in_explorer",
"mnemonic": "O",
"args": {
"visible_on_platforms": ["osx"],
"paths": []
}
},
{
"mnemonic": "T",
"caption": "Open Terminal Here",
"command": "fm_open_terminal",
"args": {
"paths": []
}
},
{
"caption": "Open in Browser",
"mnemonic": "B",
"command": "fm_open_in_browser",
"args": {
"paths": []
}
},
{
"caption": "-",
"id": "folder_commands",
},
{
"mnemonic": "F",
"caption": "Find in Files",
"command": "fm_find_in_files",
"args": {
"paths": []
}
},
]