Wishlist for the IDE

You’re right thought its weird that it only works with cmd-b and not when double clicking that block of code.

  1. I use this bridge to make it possible to have a GUI/interactions in the dockedBrowser.
    This works very well but need to install somes dependencise, run a nodejs program and make html pages.
    this can be better/easier to load Views directly on the dockedBrowser Window.

  2. have a var/id/class for splits to automate somthing like : split[0].open(document[3]). Maybe for sessions too… Session(“abc”).open

In the days of old, when DOS was a thing, 3D Studio had a little + button on the menu bar. With that you’d save the file and a version number, or date?, was added. Very useful and independent of undo - redo.

A more complex way would be to hook up SQLite and every time one hits ctr+enter save the file (or a diff) to it. You could make a textual representation of a live session that way. Kind of like a project file, independent of the text scdfile.

1 Like

You could implement this using the preprocessor. It would not have to be an IDE feature.

hjh

If it makes it independent of the editor, maybe even better. Had a quick look for preprocessor, but only found an example turning sines into saws. Is there more?

The preprocessor is a user defined function that receives the user’s code string as input.

Since it is a user defined function, it can do anything that is possible to do with a string.

It’s reasonable for a help example to keep it simple, but it shouldn’t be inferred from this that the help example reflects an outer limit of what is possible.

For instance, the screen image in the linked post shows a dialect that is compiled by a preprocessor hook into SC code.

hjh

Automatic indent of right side of “=” would be great!

currently:

csv =
pressed.cs.padRight(15, "0") ++ "," +
num ++ "," +
noteOnVel ++ "," +
vel ++ "," +
dur ++ "," +
chan.cs ++ "\n";

and

csv = (
    pressed.cs.padRight(15, "0") ++ "," +
    num ++ "," +
    noteOnVel ++ "," +
    vel ++ "," +
    dur ++ "," +
    chan.cs ++ "\n");

wanted:

csv =
    pressed.cs.padRight(15, "0") ++ "," +
    num ++ "," +
    noteOnVel ++ "," +
    vel ++ "," +
    dur ++ "," +
    chan.cs ++ "\n";

“scroll beyond end of page”
“click beyond end of line”

Hell yeah. Just going to shamelessly throw out there that I’ll be a broke person with a doctorate in about a year and would also do this probably. Let’s unionize so we don’t get exploited by the evil supercollider dev corporation
(For real I’ve even considered asking for grant money for this kind of stuff - but I guess you’d need to be somewhere civilized for that to work, i.e. not the US)

Also: Why not scnvim? (I know the answer to that one, probably. It’s been very successful at making me do things other than make music, such as learn about lua and install 723 plugins that I don’t understand - although, imagine a “bottled” scnvim installation with a bunch of plugins that works out of the box and lets you forget that you’re in vim at all? since we’re allowed to dream)

Triple clicking (or double clicking with mod key) selects whole expression:

~someFunction = {
	\\ some code
};

So triple clicking the first or last curly bracket selects not only the portion between the curly brackets but the whole expression. Should be same when the function is closed with }), ie.

p = ();
p.add(\someFunction -> {
	\\ some code
});
1 Like

I have two more wishes:

  1. Auto insert matching bars
    arg x, y;
    |x, y|
  2. supporting regular expression in Finding text and Replacing text

Already supported. I use it quite frequently.

hjh

Ah, yes!
However, line breaks do not work:

  • \n
  • \r
  • \r\n

\t works.

I thought this was because the regular expression is not fully supported, but I might be wrong.

Yes, it is already implemented:

(
var freq = 30, deterministicOscillators, win, freqScope;
deterministicOscillators = [
	"SinOsc.ar(" ++ freq ++ ")",
	"LFTri.ar(" ++ freq ++ ")",
	"LFSaw.ar(" ++ freq ++ ")",
	"LFPulse.ar(" ++ freq ++ ")",
	"LFPulse.ar(" ++ freq ++ ", width: 0.8)",
	"Impulse.ar(" ++ freq ++ ")"
];
if(s.serverRunning) { s.quit };
Window.closeAll;

~images = [];
win = Window("My Analyzer", Rect(0, 600, 511, 300));
s.waitForBoot {
	freqScope = FreqScopeView(win, win.view.bounds);
	freqScope.active_(true);
	win.front.onClose_({ freqScope.kill });
	deterministicOscillators.size.do {|i|
		defer {
			{ 
				(deterministicOscillators[i]).interpret.scope
				* 0.02
				* Env.sine.kr(doneAction: Done.freeSelf)
			}.scope;
			~images = ~images.add({ deterministicOscillators[i].interpret }
				.plot(freq.reciprocal * 2, bounds:Rect(260 * i + 10, 295, 265, 130)))
		};
		0.6.wait;
		defer {
			Image.fromWindow(~images[i*2].parent).write(("~" +/+ deterministicOscillators[i] + "waveform.png").standardizePath);
			~images = ~images.add(Image.fromWindow(win));
			~images[i*2+1].plot(bounds:Rect(260 * i + 10, 455, 265, 130), freeOnClose:true);
			~images[i*2+1].write(("~" +/+ deterministicOscillators[i] + "spectrum.png").standardizePath)
		};
		0.6.wait
	}
}
)

I very much like the IDE as is. However, if ever possible have dockable versions of s.scope, s.meter and s.freqscope would make me happy.

Lukiss.

3 Likes

One of the following feature would be great:

best,

1 Like

Automatic completion of the already used variable names and argument names in a SCD?
The similar feature in SC is autocompletion of Class name and method name.

I think it will be very practical!
Thanks!

2 Likes

Text is always found forward using the “find in page…”. It would be convenient if it could search for text in both directions by pressing the forward or backward arrow buttons.

That one’s already present. “Return/enter” finds forward, while “shift-return/enter” finds backwards.

2 Likes

Oh, thank you very much for letting me know it!