You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is gold, thank you! I'm getting into emacs after years of vimming, and this is exactly the kind of stuff I need...
Here are my contributions:
(defun kf/sclang-japa ()
"Open Japa. Linux only. Requires japa and the linuxutils quark:
https://github.com/madskjeldgaard/linuxutils-quark."
(interactive)
(sclang-eval-string "Japa.new"))
(defun kf/sclang-record ()
"Toggle recording. The file name is constructed by the git hash and a
timestamp, and puts into a directory called rec in the current process directory.
If the directory does not exist, it will be created."
(interactive)
(sclang-eval-expression "if(s.isRecording){s.stopRecording}{s.record(\"rec\"+/+Git(thisProcess.nowExecutingPath.dirname).sha[0..5]++\"_\"++Date.localtime.stamp++\".wav\", numChannels: s.options.numOutputBusChannels)}"))
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:
Let me know if that is of interest...
The text was updated successfully, but these errors were encountered: