Reputation: 4251
In recent versions of Intellij IDEA, when writing a scala method which returns Unit
(a.k.a. a procedure), IDEA will fold the : Unit =
part, so that it displays like the so-called "procedure syntax". Here's what it looks like :
def myMethod(): Unit = {
// do something
}
gets folded by default to :
def myMethod() {
// do something
}
I understand the point, since the procedure syntax is slated for deprecation but some people still like it, I guess it's a good compromise for them. However, for those of us who don't like the procedure syntax, I wasn't able to find a setting to disable that code folding by default. Preferences > Editor > Code folding does show some scala-specific settings for which code foldings should be collapsed by default, but the only one I have checked is "Shell comments (scala script)".
Does someone know how to disable this feature? Or is it currently impossible?
Upvotes: 11
Views: 747
Reputation: 15783
It's in Preferences -> code style -> Scala, then on the right there are two hidden tabs, go on other and there should be a check with Enforce procedural syntax for methods with Unit return type
For Intellij 14 the path is slightly different:
Upvotes: 11