Replies: 1 comment
|
You can get a useful Helix + persistent Helix already recognizes For REPL-style evaluation, the practical route is to reuse scvim's transport independently of Vim. Its Run #!/bin/sh
code=$(cat)
exec /absolute/path/to/scvim/bin/sc_dispatcher -i "$code"Make it executable, then add a Helix binding: [keys.normal.space]
e = ":pipe-to sc-send"
[keys.select.space]
e = ":pipe-to sc-send"Helix's This gives Helix-style editing and live evaluation, but not the VS Code/scvim/scel post window, help browser, completion, and server controls. If those are essential, one of those integrations is still the lower-friction choice; for editing plus evaluate-selection, the pipe setup is workable. |
Uh oh!
There was an error while loading. Please reload this page.
i use supercollider and unfortunately the IDE doesn't have any sort of modal editing setting, let alone a "helix mode". i see that there's plugins/modes for vim and emacs, plus a plugin for vscode that seems to use an LSP. however i can't really make sense on how to start using helix for supercollider, specially since code execution happens on a bit more of a REPL style, where you usually run specific lines of code or statements/selections instead of an entire file in a procedural manner
before i start messing around, has anyone gotten supercollider to play well with helix in any way? this is the one type of use case where i wonder if just using emacs with a helix mode is better
All reactions