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...
This commit is contained in:
Juerd Waalboer 2023-06-10 22:24:14 +02:00
parent a00384bb0e
commit 194ba4990c

View file

@ -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);