All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ammonite.shell.Configure.scala Maven / Gradle / Ivy

There is a newer version: 2.4.1-2-63e98591
Show newest version
package ammonite.shell

import ammonite.interp.api.InterpAPI
import ammonite.repl.api.ReplAPI

/**
 * Created by haoyi on 9/1/15.
 */
object Configure {

  def apply(interp: InterpAPI, repl: ReplAPI, wd: => ammonite.ops.Path) = {
    if (scala.util.Properties.isWin) {
      repl.frontEnd() = new ammonite.repl.FrontEnds.JLineWindows(ammonite.compiler.Parsers)
      interp.colors() = ammonite.util.Colors.BlackWhite
    } else {
      repl.frontEnd() = ammonite.repl.AmmoniteFrontEnd(
        ammonite.compiler.Parsers,
        ammonite.shell.PathComplete.pathCompleteFilter(wd, interp.colors())
      )
    }

    repl.prompt.bind(
      sys.props("user.name") +
      "-" +
      wd.segments.toSeq.lastOption.getOrElse("") +
      "@ "
    )
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy