I remember that there is a switch somewhere to suppress printing of return types in Scala REPL, but I cannot find it. I am particularly interested in adding this switch to the sbt build file. Something like returnTypes in console := false
.
eg. now I have
scala> within( Span( 0, 33 )) res7: scala.collection.immutable.IndexedSeq[(de.sciss.lucre.expr.SpanLike, scala.collection.immutable.IndexedSeq[(de.sciss.lucre.expr.Expr[de.sciss.lucre.stm.InMemory,de.sciss.lucre.expr.SpanLike], de.sciss.lucre.expr.Expr[de.sciss.lucre.stm.InMemory,Long])])] = Vector()
and for obvious reasons I want
scala> within( Span( 0, 33 )) res7: Vector()
source share