Formatting problem: closures

Hi all,

Using "Reformat Code" really seems to mess up multi-line closures. e.g.

      print("Item is: ")
      println(item)
    }
  }
}
]]>

becomes:

              print("Item is: ")
              println(item)
    }
  }
}
]]>

Is there any way or making formatting leave the example formatted as it was originally? I tried looking at the formatting options but they appear to be for Java not Scala.

Cheers,
Andrew

P.S. Yes, I know the above could be written as a simple for loop

0

Andrew,

Yes, we realize that it would be better to have separate pages with formatting and color setting for Scala, but now they are not top-priority task. We'll look at your issue specifically. It seems, that variant with small indent looks better. :)

Ilya

0

请先登录再写评论。