scel icon indicating copy to clipboard operation
scel copied to clipboard

Utility functions for scope, meter, etc.

Open julianrubisch opened this issue 3 years ago • 1 comments

I don't know if this project takes pull requests, but I've written myself some simple utility functions that could be handy for others too:

(defun jr/sclang-nodetree ()
  "Open scsynth nodeTree."
  (interactive)
  (sclang-eval-string "s.plotTree;"))

(defun jr/sclang-meter ()
  "Open scsynth meter."
  (interactive)
  (sclang-eval-string "s.meter;"))

(defun jr/sclang-scope ()
  "Open scsynth scope."
  (interactive)
  (sclang-eval-string "s.scope;"))

(defun jr/sclang-freqscope ()
  "Open scsynth freqscope."
  (interactive)
  (sclang-eval-string "FreqScope.new;"))

Let me know if that is of interest...

julianrubisch avatar Dec 13 '20 16:12 julianrubisch