ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Super​Collider ST3

by acarabott ST3

Sublime Text 3 Package for SuperCollider

Details

Installs

  • Total 1K
  • Win 504
  • Mac 469
  • Linux 184
Jan 21 Jan 20 Jan 19 Jan 18 Jan 17 Jan 16 Jan 15 Jan 14 Jan 13 Jan 12 Jan 11 Jan 10 Jan 9 Jan 8 Jan 7 Jan 6 Jan 5 Jan 4 Jan 3 Jan 2 Jan 1 Dec 31 Dec 30 Dec 29 Dec 28 Dec 27 Dec 26 Dec 25 Dec 24 Dec 23 Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8
Windows 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1
Mac 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

SuperCollider Sublime Text 3 Plugin

Installation

  • Either clone this repo into your Sublime Text 3/Packages folder, or install via Package Control
    • If you cloned the repo, make sure to rename the directory SuperCollider, full dir should be Sublime Text 3/Packages/SuperCollider
  • I recommend copying Packages/SuperCollider/SuperCollider.sublime-settings to Packages/User/SuperCollider.sublime-settings this way you can overwrite any of the preferences easily.
  • If you have installed SuperCollider into a non-standard location, set the path in Package Settings > SuperCollider > Settings - User

Features

  • Execute with multiple cursors
  • Execution highlighting
  • Open Help and Class files directly from Sublime Text
  • Post window in a new tab, group, window, or output panel (see settings file)
  • Fancy block evaluation, expands to lines containing brackets, e.g. executing with the cursor inside a SynthDef will evaluate it without the need for additional parentheses.
  • Near parity with SCIDE commands, e.g. Open User Support Directory, and Open Startup File

Options

See Package Settings > SuperCollider > Settings - Default for further options, including Post Window settings.

Commands

All commands are available in the Tools > SuperCollider Menu, or via the Command Palette

If you want to set key bindings, add an entry to your Preferences -> Package Settings -> SuperCollider -> Key Bindings - User e.g.

{
    "command": "super_collider_stop",
    "keys":    ["super+."],
    "context": [{
        "key":      "selector",
        "operator": "equal",
        "operand":  "source.supercollider"
    }]
}

The available commands are:

  • super_collider_start_interpreter
  • super_collider_stop_interpreter
  • super_collider_evaluate
  • super_collider_open_post_view
  • super_collider_clear_post_view
  • super_collider_boot_server
  • super_collider_kill_server
  • super_collider_reboot_server
  • super_collider_toggle_mute
  • super_collider_increase_volume
  • super_collider_decrease_volume
  • super_collider_restore_volume
  • super_collider_start_recording
  • super_collider_stop_recording
  • super_collider_evaluate
  • super_collider_stop
  • super_collider_recompile
  • super_collider_help
  • super_collider_open_class

Credits

Rewritten for Sublime Text 3 based on ST2 plugin by geoffroymontel.

Also includes: - sclang Syntax converted from TextMate syntax by rfwatson - Some snippets and mouse mapping from Thor Magnusson

Testing TODO

  • Windows
    • Communication with sclang
    • 'Open Startup File' command
    • 'Open User Support Directory' command
  • Linux
    • 'Open Startup File' command
    • 'Open User Support Directory' command

TODO

  • Use system dialog to select SuperCollider application location
  • Provide syntax error feedback in open document (e.g. highlight line with errors)
  • command: show node tree
  • command: dump node terminated
  • command: dump node tree with controls
  • command: look up references
  • autocompletion
    • Make easy to do ctags
    • Include default symbol list from core
  • add schelp syntax from crucialfelix's Atom plugin
  • mini html for error logs with crucialfelix's parsing
    • probably use supercollider.js for this

Future Work

Multiple sclang instances

In theory this plugin could support multiple instances of sclang, however some mechanism would be required to tell the commands (start, stop execute etc) which instance to send the message to.

Possibile approaches:

  • Selectable 'current sclang' menu item