1
0
mirror of https://github.com/sstephenson/bats.git synced 2024-11-17 03:32:27 +01:00

Emit ANSI escape sequences directly instead of calling tput

This commit is contained in:
Sam Stephenson 2013-10-28 12:21:16 -05:00
parent df4def2e67
commit 1534201101

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() {