scala-ide / scala-worksheet

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

Long running output prevents scrolling #75

Closed dragos closed 12 years ago

dragos commented 12 years ago

During mixing, the caret is kept at the previous position. It should allow movement, and scrolling. For example:

var foo = 0

while (foo < 10000) {

  println(s" $foo")

  Thread.sleep(100)

  foo += 1

}