-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsnippets.json
32 lines (32 loc) · 988 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
{
"Start TAS script now": {
"prefix": "now",
"body": "start now",
"description": "Start the TAS script"
},
"Start TAS script from save": {
"prefix": "save",
"body": "start save ${1:save_name}",
"description": "Start the TAS script"
},
"Start TAS script from map": {
"prefix": "map",
"body": "start map ${1:map_name}",
"description": "Start the TAS script"
},
"Reset virtual controller inputs": {
"prefix": "reset",
"body": "${1:tick}>0 0|0 0|jduzbo||",
"description": "Command with all neutral inputs"
},
"Insert an empty instruction line": {
"prefix": "empty",
"body": "${1:tick}>|$2|$3|$4|$5",
"description": "Inserts an instruction line"
},
"Insert a loop": {
"prefix": "repeat",
"body": "repeat ${1:iterations}\n\t${2:tick}>|$3|$4|$5|$6\nend",
"description": "Inserts an instruction line"
}
}