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

scala.build.internals.ConsoleUtils.scala Maven / Gradle / Ivy

The newest version!
package scala.build.internals

object ConsoleUtils {
  import Console.*

  object ScalaCliConsole {
    val GRAY: String = "\u001b[90m"
  }

  val ansiFormattingKeys: Set[String] = Set(RESET, BOLD, UNDERLINED, REVERSED, INVISIBLE)
  val ansiColors: Set[String] =
    Set(BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, ScalaCliConsole.GRAY)
  val ansiBoldColors: Set[String] =
    Set(BLACK_B, RED_B, GREEN_B, YELLOW_B, BLUE_B, MAGENTA_B, CYAN_B, WHITE_B)
  val allAnsiColors: Set[String]  = ansiColors ++ ansiBoldColors
  val allConsoleKeys: Set[String] = allAnsiColors ++ ansiFormattingKeys

  extension (s: String) {
    def noConsoleKeys: String =
      allConsoleKeys.fold(s)((acc, consoleKey) => acc.replace(consoleKey, ""))
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy