Supercollider: Add first snippets

This commit is contained in:
Louis Pilfold 2015-08-10 20:31:01 +01:00
parent 464aeae09b
commit 7f327c60ea
2 changed files with 15 additions and 0 deletions

View File

@ -234,6 +234,7 @@ This list is kept up-to-date on a best effort basis.
* Python - [honza](http://github.com/honza) * Python - [honza](http://github.com/honza)
* Ruby - [taq](http://github.com/taq) * Ruby - [taq](http://github.com/taq)
* Scala - [gorodinskiy](https://github.com/gorodinskiy) * Scala - [gorodinskiy](https://github.com/gorodinskiy)
* Supercollider - [lpil](https://github.com/lpil)
License License
------- -------

View File

@ -0,0 +1,14 @@
snippet b
(
${0}
)
snippet if
if (${1}) {
${0}
}
snippet ife
if (${1}) {
${2}
} {
${0}
}