-
Notifications
You must be signed in to change notification settings - Fork 1
/
snippets.json
354 lines (312 loc) · 7.19 KB
/
snippets.json
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
{
"Print Statement": {
"prefix": "print",
"body": [
"畀我睇下 ${1} 点样先?"
],
"description": "print statement"
},
"Exit Statement": {
"prefix": "exit",
"body": [
"收工"
],
"description": "exit statement"
},
"Self Statement": {
"prefix": "self",
"body": [
"自己嘅"
],
"description": "self statement"
},
"Assign Statement": {
"prefix": "assign",
"body": [
"讲嘢: ${1} 係 ${2}"
],
"description": "assign statement"
},
"Multi-Assign Statement": {
"prefix": "multi-assign",
"body": [
"讲嘢 -> {",
" ${1} 係 ${2}",
"}"
]
},
"Global Statement": {
"prefix": "global",
"body": [
"Share下 ${1}"
]
},
"While Statement": {
"prefix": "while",
"body": [
"落操场玩跑步",
" ${1}",
"玩到 ${2} 为止"
],
"description": "while statement"
},
"If Statement": {
"prefix": "if",
"body": [
"如果 ${1} 嘅话 -> {",
" ${2}",
"}"
],
"description": "if statement"
},
"Break Statement": {
"prefix": "break",
"body": [
"饮茶先啦"
],
"description": "break statement"
},
"Try Statement": {
"prefix": "try",
"body": [
"执嘢 -> {",
" ${1}",
"}"
],
"description": "try statement"
},
"Except Statement": {
"prefix": "except",
"body": [
"揾到 ${1} 嘅话",
" ${1}",
"}"
],
"description": "except statement"
},
"Finally Statement": {
"prefix": "finally",
"body": [
"执手尾 -> {",
" ${1}",
"}"
],
"description": "finally statement"
},
"Raise Statement": {
"prefix": "raise",
"body": [
"掟个 ${1} 来睇下?"
],
"description": "raise statement"
},
"Type Statement": {
"prefix": "type",
"body": [
"起底: ${1}"
],
"description": "type statement"
},
"Import Statement": {
"prefix": "import",
"body": [
"使下 ${1}"
],
"description": "import statement"
},
"For Statement": {
"prefix": "for",
"body": [
"${1} 从 ${2} 行到 ${3}",
" ${4}",
"行晒"
],
"description": "For statement"
},
"Function Statement": {
"prefix": "def",
"body": [
"$ ${1} 要做咩:",
" ${2}",
"搞掂"
],
"description": "Function statement"
},
"Call_bfunc Statement": {
"prefix": "bcall",
"body": [
"用下 ${1}"
],
"description": "Call the built-in function"
},
"Call_func Statement": {
"prefix": "call",
"body": [
"|${1}| 下 -> ${2}"
],
"description": "Call Statement"
},
"Class Statement": {
"prefix": "class",
"body": [
"咩系 ${1}?",
" 佢个老豆叫 |${2}|",
" ${3}",
"明白未啊?"
],
"description": "Class statement"
},
"Method Statement": {
"prefix": "method",
"body": [
"佢识得 ${1} -> {",
" ${1}",
"}"
],
"description": "Method statement"
},
"Attr Statement": {
"prefix": "attr",
"body": [
"佢嘅 ${1} 係 ${2}"
],
"description": "Attr statement"
},
"Return Statement": {
"prefix": "return",
"body": [
"还数 ${1}"
],
"description": "Return statement"
},
"Keyword In" : {
"prefix" : "in",
"body" : [
" 喺 "
],
"description": "Keyword in"
},
"Random Library": {
"prefix": "random",
"body": [
"随机数"
],
"description": "random library"
},
"Game Library": {
"prefix": "game-lib",
"body": [
"游戏"
],
"description": "game library"
},
"Game setmode": {
"prefix": "game-set-mode",
"body": [
"屏幕老作"
],
"description": "game set mode"
},
"Game imgload": {
"prefix": "game-img-load",
"body": [
"图片老作"
],
"description": "Game imgload"
},
"Game rectload": {
"prefix": "game-rect-load",
"body": [
"矩形老作"
],
"description": "Game rectload"
},
"Game Rect": {
"prefix": "game-rect",
"body": [
"嚟个矩形"
],
"description": "Game Rect"
},
"Game Text": {
"prefix": "game-text",
"body": [
"写隻字"
],
"description": "Game Text"
},
"Game musicload": {
"prefix": "game-music-load",
"body": [
"嚟首music"
],
"description": "Game music load"
},
"Web Style define": {
"prefix": "WebStyle",
"body": [
"${1} 要点画",
" ${1}",
"搞掂"
],
"description": "Web Style define"
},
"Web html deine": {
"prefix": "Webhtml",
"body": [
"老作一下 {",
"${1}",
"}"
],
"description": "Web Html define"
},
"Where" : {
"prefix" : "Where",
"body" :[
"身位(${1})"
],
"description": "Where statement"
},
"Request": {
"prefix" : "Request",
"body" : [
"网络请求"
],
"description": "The library of Web Request"
},
"Json" : {
"prefix" : "json_parse",
"body" : [
"json解析"
],
"description": "The library of Json Parser"
},
"Web Request" : {
"prefix" : "Web Request",
"body" : [
"|𠯠求| 下 -> ||"
],
"description": "The function of web request"
},
"True" : {
"prefix" : "True",
"body" : [
"啱"
],
"description": "True in Cantonese"
},
"False" : {
"prefix" : "False",
"body" : [
"唔啱"
],
"description": "False in Cantonese"
},
"Input" : {
"prefix" : "Input",
"body" : [
"&畀你()"
],
"description": "The input function"
}
}