Supercollider synthedef

This commit is contained in:
Louis Pilfold 2015-10-11 11:40:40 +01:00
parent d3a08e518d
commit 4f262c849e
2 changed files with 9 additions and 4 deletions

View File

@ -3,3 +3,8 @@ for (${1:1}, ${2:10}) {${3: |i}|}
$0 $0
} }
endsnippet endsnippet
snippet sdef
SynthDef(\\${1:synthName}, {${2: |${3:x}|}
${0}
}).add;
endsnippet

View File

@ -2,10 +2,6 @@ snippet b
( (
${0} ${0}
) )
snippet {
{
${0}
}
snippet if snippet if
if (${1}) { if (${1}) {
${0} ${0}
@ -20,3 +16,7 @@ snippet for
for (${1:1}, ${2:10}) { |i| for (${1:1}, ${2:10}) { |i|
${0} ${0}
} }
snippet sdef
SynthDef(\\${1:synthName}, {${2}
${0}
}).add;