Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indentation incorrect behaviour in scel #5

Open
drtutut opened this issue Mar 19, 2018 · 0 comments
Open

Indentation incorrect behaviour in scel #5

drtutut opened this issue Mar 19, 2018 · 0 comments
Labels
bug Something isn't working

Comments

@drtutut
Copy link

drtutut commented Mar 19, 2018

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;
}
)
@widp widp added the bug Something isn't working label Mar 23, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants