-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsnippets.json
36 lines (36 loc) · 896 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
{
"For loop": {
"prefix": "for",
"body": [
"for ${1:numeric} from ${2:numeric} to ${3:numeric}",
"\t${4:# code...}",
"endfor"
],
"description": "A for loop in Praat"
},
"While loop": {
"prefix": "while",
"body": [
"while ${1:condition}",
"\t${2:# code...}",
"endwhile"
],
"description": "A while loop in Praat"
},
"Repeat loop": {
"prefix": "repeat",
"body": [
"repeat",
"\t${2:# code...}",
"until ${1:condition}"
],
"description": "A repeat-until loop in Praat"
},
"Read from file": {
"prefix": "Read from file",
"body": [
"Read from file... ${0:file name}"
],
"description": "Open a compatible file with Praat"
}
}