scel icon indicating copy to clipboard operation
scel copied to clipboard

Indentation incorrect behaviour in scel

Open drtutut opened this issue 6 years ago • 0 comments

Version : 3.9.1 System : UbuntuStudio 16.04

In scel, indentation is broken after a Routine block. Indeed, the case is slightly more general, as you can see in the example:

(
{
	// ok
	this.that(
		blah
	);
	// ok
	this.that(
		{
			blah
		}
	);
	// ko
	Routine {
		blah
	};
// Following code not indented
a = 3;
}
)

(
{
	// back to correct indent level
	fork {
		blah
	};
        // indentation still ok
	Foo {
		blah
	}
// following code not indented
a = 3;
}
)

drtutut avatar Mar 19 '18 14:03 drtutut