From 194ba4990cc821433e938cd46be89f69da3a2f30 Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Sat, 10 Jun 2023 22:24:14 +0200 Subject: [PATCH] idle: use underline instead of dim/faint Was always intended as underline. Our old IBM terminal renders 2 as underline. Other things interpret it as dim/faint though... --- plugins/idle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/idle b/plugins/idle index a55604d..d46c79a 100644 --- a/plugins/idle +++ b/plugins/idle @@ -21,7 +21,7 @@ sub hook_prompt_idle($class, $cart, $plugin, $seconds, $readline, @) { my $help = $cart->entries('refuse_checkout') ? "Enter 'abort' to abort." : "Enter username to $verb or 'abort' to abort."; - print "\e[33;2;1mTransaction incomplete.\e[0m $help\n"; + print "\e[33;4;1mTransaction incomplete.\e[0m $help\n"; $readline->restore_prompt; $readline->replace_line($text);