From fabdfa6ee630bb21c409ae3e31abfaff713e52c2 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Thu, 6 Feb 2025 11:37:44 -0800 Subject: Fix one remaining instance of \033 escape to $'...' and \e. --- basta.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basta.sh b/basta.sh index 80a8d36..0117f30 100644 --- a/basta.sh +++ b/basta.sh @@ -37,7 +37,7 @@ basta.prepare_term() if [ -z "$basta_prev_reserved_rows" ] ; then basta_prev_reserved_rows=$((realrows - LINES)) - printf "\n\033[A" + printf $'\n\e[A' fi LINES=$((realrows - $basta_prev_reserved_rows - 1)) -- cgit v1.2.3