aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/vim-snippets/UltiSnips/supercollider.snippets
blob: b8538aa91ebd08e976decf58591265d9879f5717 (plain)
1
2
3
4
5
6
7
8
9
10
snippet for
for (${1:1}, ${2:10}) {${3: |i}|}
	$0
}
endsnippet
snippet sdef
SynthDef(\\${1:synthName}, {${2: |${3:x}|}
	${0}
}).add;
endsnippet