From 7f327c60ea3cb17432e85267e1150f28c0eae4f9 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Mon, 10 Aug 2015 20:31:01 +0100 Subject: [PATCH] Supercollider: Add first snippets --- README.md | 1 + snippets/supercollider.snippets | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 snippets/supercollider.snippets diff --git a/README.md b/README.md index 8b24a2b..4522cce 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,7 @@ This list is kept up-to-date on a best effort basis. * Python - [honza](http://github.com/honza) * Ruby - [taq](http://github.com/taq) * Scala - [gorodinskiy](https://github.com/gorodinskiy) +* Supercollider - [lpil](https://github.com/lpil) License ------- diff --git a/snippets/supercollider.snippets b/snippets/supercollider.snippets new file mode 100644 index 0000000..0d54cc0 --- /dev/null +++ b/snippets/supercollider.snippets @@ -0,0 +1,14 @@ +snippet b + ( + ${0} + ) +snippet if + if (${1}) { + ${0} + } +snippet ife + if (${1}) { + ${2} + } { + ${0} + }