-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathContext.sublime-menu
executable file
·300 lines (300 loc) · 8.38 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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
[
{ "caption": "-" },
{
"caption": "Evaluate JavaScript",
"children": [
{
"caption": "Evaluate JavaScript",
"id": "javascript_enhancements_evaluate_javascript",
"command": "javascript_enhancements_evaluate_javascript",
},
{ "caption": "-" },
{
"caption": "Evaluate JavaScript on this line",
"id": "javascript_enhancements_evaluate_javascript_line",
"command": "javascript_enhancements_evaluate_javascript",
"args": {
"is_line": true
}
}
]
},
{"caption": "-"},
{
"caption": "String lines to concat",
"id": "javascript_enhancements_string_lines_to_concat",
"command": "javascript_enhancements_string_lines_to_concat",
"args": {"case": "split"}
},
{
"caption": "Open TerminalView Here…",
"id": "javascript_enhancements_open_termival_view_here",
"command": "javascript_enhancements_open_termival_view_here"
},
{"caption": "-"},
{
"caption": "Can I use?",
"id": "javascript_enhancements_can_i_use",
"command": "javascript_enhancements_can_i_use"
},
{ "caption": "-" },
{
"caption": "Sort array ASC",
"command": "javascript_enhancements_sort_array",
"id": "javascript_enhancements_sort_array_asc",
"args": {"case": "compare_func_asc"}
},
{
"caption": "Sort array DESC",
"command": "javascript_enhancements_sort_array",
"id": "javascript_enhancements_sort_array_desc",
"args": {"case": "compare_func_desc"}
},
{
"caption": "Sort array alphabetically ASC",
"command": "javascript_enhancements_sort_array",
"id": "javascript_enhancements_sort_array_desc",
"args": {"case": "alpha_asc"}
},
{
"caption": "Sort array alphabetically DESC",
"command": "javascript_enhancements_sort_array",
"id": "javascript_enhancements_sort_array_desc",
"args": {"case": "alpha_desc"}
},
{ "caption": "-" },
{
"caption": "Create Class from object literal",
"command": "javascript_enhancements_create_class_from_object_literal",
"id": "javascript_enhancements_create_class_from_object_literal"
},
{ "caption": "-" },
{
"caption": "JavaScript Refactor",
"id": "javascript_enhancements_refactor",
"children": [
{
"caption": "Converto to arrow function",
"command": "javascript_enhancements_refactor",
"args": {
"case": "convert_to_arrow_function"
}
},
{ "caption": "-" },
{
"caption": "Export",
"children": [
{
"caption": "Function",
"command": "javascript_enhancements_refactor",
"args": {
"case": "export",
"type": "function"
}
},
{
"caption": "Class",
"command": "javascript_enhancements_refactor",
"args": {
"case": "export",
"type": "class"
}
},
{
"caption": "Variable",
"command": "javascript_enhancements_refactor",
"args": {
"case": "export",
"type": "variable"
}
}
]
},
{ "caption": "-" },
{
"caption": "Safe Copy",
"command": "javascript_enhancements_refactor",
"args": {
"case": "safe_copy"
}
},
{
"caption": "Safe Move",
"command": "javascript_enhancements_refactor",
"args": {
"case": "safe_move"
}
},
{
"caption": "Safe Delete",
"command": "javascript_enhancements_refactor",
"args": {
"case": "safe_delete"
}
},
{ "caption": "-" },
{
"caption": "Extract",
"children": [
{
"caption": "Variable",
"command": "javascript_enhancements_refactor",
"args": {
"case": "extract_variable"
}
},
{
"caption": "Field",
"command": "javascript_enhancements_refactor",
"args": {
"case": "extract_field"
}
},
{
"caption": "Parameter",
"command": "javascript_enhancements_refactor",
"args": {
"case": "extract_parameter"
}
},
{ "caption": "-" },
{
"caption": "Method",
"command": "javascript_enhancements_refactor",
"args": {
"case": "extract_method"
}
}
]
}
]
},
{
"caption": "Surround With",
"id": "javascript_enhancements_surround_with",
"children": [
{
"caption": "if statement",
"command": "javascript_enhancements_surround_with",
"args": {"case": "if_statement"}
},
{
"caption": "if else statement (2 selections)",
"command": "javascript_enhancements_surround_with",
"args": {"case": "if_else_statement"}
},
{
"caption": "while statement",
"command": "javascript_enhancements_surround_with",
"args": {"case": "while_statement"}
},
{
"caption": "do while statement",
"command": "javascript_enhancements_surround_with",
"args": {"case": "do_while_statement"}
},
{
"caption": "for statement",
"command": "javascript_enhancements_surround_with",
"args": {"case": "for_statement"}
},
{
"caption": "try catch statement",
"command": "javascript_enhancements_surround_with",
"args": {"case": "try_catch_statement"}
},
{
"caption": "try finally statement",
"command": "javascript_enhancements_surround_with",
"args": {"case": "try_finally_statement"}
},
{
"caption": "try catch finally statement",
"command": "javascript_enhancements_surround_with",
"args": {"case": "try_catch_finally_statement"}
},
{ "caption": "-" },
{
"caption": "function",
"command": "javascript_enhancements_surround_with",
"args": {"case": "function"}
},
{
"caption": "anonymous function",
"command": "javascript_enhancements_surround_with",
"args": {"case": "anonymous_function"}
},
{
"caption": "arrow function",
"command": "javascript_enhancements_surround_with",
"args": {"case": "arrow_function"}
},
{
"caption": "async function",
"command": "javascript_enhancements_surround_with",
"args": {"case": "async_function"}
},
{
"caption": "iife function",
"command": "javascript_enhancements_surround_with",
"args": {"case": "iife_function"}
},
{
"caption": "generator function",
"command": "javascript_enhancements_surround_with",
"args": {"case": "generator_function"}
},
{
"caption": "block {}",
"command": "javascript_enhancements_surround_with",
"args": {"case": "block"}
}
]
},
{
"caption": "Delete Surrounded",
"id": "javascript_enhancements_delete_surrounded",
"children": [
{
"caption": "Strip quoted string",
"command": "javascript_enhancements_delete_surrounded",
"args": {"case": "strip_quoted_string"}
}
]
},
{ "caption": "-" },
{
"caption": "Sort JavaScript Imports",
"id": "javascript_enhancements_sort_imports",
"command": "javascript_enhancements_sort_imports"
},
{
"caption": "Expand Abbreviation",
"id": "javascript_enhancements_expand_abbreviation",
"command": "javascript_enhancements_expand_abbreviation"
},
{ "caption": "-" },
{
"caption": "Add Project Bookmark here",
"id": "javascript_enhancements_add_project_bookmark_here",
"command": "javascript_enhancements_add_project_bookmark_here"
},
{ "caption": "-" },
{
"caption": "Flow Goto Definition",
"id": "javascript_enhancements_go_to_definition",
"command": "javascript_enhancements_go_to_definition"
},
{ "caption": "-" },
{
"caption": "Show Hint Parameters",
"id": "javascript_enhancements_show_hint_parameters",
"command": "javascript_enhancements_show_hint_parameters"
},
{ "caption": "-" },
{
"caption": "Get AST",
"id": "javascript_enhancements_get_ast",
"command": "javascript_enhancements_get_ast"
}
]