sbt-no-color such that the sbt output could show correctly in sublime console.touch sbt-no-colorAnd in that file,
#!/bin/bash
export SBT_HOME=/PATH/TO/sbt
java -Dsbt.log.noformat=true -Dfile.encoding=UTF8 $JAVA_OPTS -jar "${SBT_HOME}/bin/sbt-launch.jar" "$@"Scala.sublime-build{
"cmd": ["/PATH/TO/sbt-no-color run"],
"file_regex": "^\\[error\\] ([.a-zA-Z0-9/-]+[.]scala):([0-9]+):",
"selector": "source.scala",
"working_dir": "${project_path:${folder}}",
"shell": "true"
}test.scala.object HelloWorld {
def main(args: Array[String]) {
println("Hello, world!")
}
}Super + b, done.