6

我记得有一个开关可以抑制Scala REPL 中返回类型的打印,但我找不到它。我对将此开关添加到 sbt 构建文件特别感兴趣。类似的东西returnTypes in console := false

例如,现在我有

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()

出于显而易见的原因,我想要

scala> within( Span( 0, 33 ))
res7: Vector()
4

1 回答 1

5

我的问题基本上反映在这个邮件列表问题中。根据 Rex Kerr 的想法,以下内容可以进入build.sbt

initialCommands in console := """// helper method to disable type printing
def shortresults[T](t: => T) = {
   val s = t.toString
   val name = s.takeWhile(_ != ':')
   val idx = s.indexOf(" = ")
   val full = if (idx >= 0) name + s.substring(idx) else s
   val short = if (full.length>799) full.substring(0,796)+"..." else full
   print(short)
   t
}
"""

但遗憾的是,在控制台启动并运行后,仍然需要手动执行以下三个 REPL 转义命令:

:power
:wrap shortresults
:silent
于 2012-06-17T00:19:39.080 回答