mirror of https://github.com/sbt/sbt.git
disable JLine event expansion
This commit is contained in:
parent
e805eb919d
commit
577424fe70
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue