scala-ide / scala-worksheet

A Scala IDE plugin for a multi-line REPL (called worksheet)
96 stars 24 forks source link

Support for autoindent in braces #117

Open skyluc opened 11 years ago

skyluc commented 11 years ago

When hitting the return key between braces,

def foo {|}

it generates

def foo{
|}

It should add a correctly indented extra line:

def foo{
  |
}

From #1001382