disable JLine event expansion

This commit is contained in:
Mark Harrah 2013-07-12 09:42:16 -04:00
parent e805eb919d
commit 577424fe70
1 changed files with 1 additions and 0 deletions

View File

@ -102,6 +102,7 @@ private object JLine
def createReader(historyPath: Option[File]): ConsoleReader =
usingTerminal { t =>
val cr = new ConsoleReader
cr.setExpandEvents(false) // https://issues.scala-lang.org/browse/SI-7650
cr.setBellEnabled(false)
val h = historyPath match {
case None => new MemoryHistory