Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 995 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 995 Bytes

supercollider-snippets package

This is an Atom snippets package for use in SuperCollider, a programming language for audio synthesis. Feel free to submit pull requests to add snippets you find useful; just make sure to check if similar coverage doesn't already exist.

contributing

The snippets file is in the snippets directory. Right now you can just add snippets to the bottom of the supercollider-snippets.cson file, indented 2 spaces to that everything is still under the .source.supercollider key. The syntax for adding a snippet is pretty straightforward:

  'snippet name':
    'prefix': 'text_to_invoke_snippet'
    'body': """
      // your snippet goes here
      // take as many lines as you like
    """

More on snippets syntax here.

Thanks to @crucialfelix for the tools to use Atom as a SuperCollider IDE.