Set default supershell blank zone to 1

We do not need a large blank zone with the virtual system.out.
This commit is contained in:
Ethan Atkins 2019-12-17 12:24:44 -08:00
parent 5c42c20cdc
commit 24d4b3549b
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ object SysProp {
def supershell: Boolean = booleanOpt("sbt.supershell").getOrElse(!dumbTerm && color)
def supershellSleep: Long = long("sbt.supershell.sleep", 100L)
def supershellBlankZone: Int = int("sbt.supershell.blankzone", 5)
def supershellBlankZone: Int = int("sbt.supershell.blankzone", 1)
def defaultUseCoursier: Boolean = {
val coursierOpt = booleanOpt("sbt.coursier")