-
Notifications
You must be signed in to change notification settings - Fork 1
/
snippets.json
47 lines (47 loc) · 935 Bytes
/
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
{
"If statement" : {
"prefix" : "if",
"body" : [
"if ($1) then",
"\t$2",
"endif;"
],
"description" : "If Statement"
},
"If-Else statement" : {
"prefix" : "ifelse",
"body" : [
"if ($1) then",
"\t$2",
"else",
"\t$3",
"endif;"
]
},
"While Statement" : {
"prefix" : "while",
"body" : [
"while ($1) do",
"\t$2",
"endwhile;"
]
},
"Multipush Statement" : {
"prefix" : "multipush",
"body" : [
"multipush ($1);"
]
},
"Multipop Statement" : {
"prefix" : "multipop",
"body" : [
"multipop ($1);"
]
},
"Inline Statement" : {
"prefix" : "inline",
"body" : [
"inline \"$1\";"
]
}
}