After using Emacs and Nvim I’m back using the default SCIDE as it still has the best Help support and it makes more sense for a beginner like me.
I wonder how the navigation should work. There’s go to next block and go to next region.
The go to next region behaves strange in my case. When I’m at the first ( in the code below go to next region bring me to the closing bracket. And I also can go up again. However when being at the first closing bracket another “go to next region” bring me to the end of the document.
Is this how it’s supposed to work or is there a bug maybe?
Go to next and previous block brings me only to the start and end of the document.
(
~num = 4;
~num.reciprocal.postln;
~num.squared;
var num;
)
61%12
(
var num;
~num = 4;
~num.reciprocal.postln;
~num.squared;
)
// comment