1
0
mirror of https://github.com/sstephenson/bats.git synced 2024-09-29 12:38:26 +02:00

Merge pull request #26 from sstephenson/ansi

Emit ANSI escape sequences directly instead of calling tput
This commit is contained in:
Sam Stephenson 2013-10-28 11:22:34 -07:00
commit 4b3670d4cb

View File

@ -75,11 +75,11 @@ printf_with_truncation() {
go_to_column() {
local column="$1"
tput hpa "$column"
printf "\x1B[%dG" $(( $column + 1 ))
}
clear_to_end_of_line() {
tput el
printf "\x1B[K"
}
advance() {
@ -91,12 +91,11 @@ advance() {
set_color() {
local color="$1"
local weight="$2"
tput setaf "$color"
[ -z "$weight" ] || tput "$weight"
printf "\x1B[%d;%dm" $(( 30 + $color )) "$( [ "$weight" = "bold" ] && echo 1 || echo 22 )"
}
clear_color() {
tput sgr0
printf "\x1B[0m"
}
plural() {