From 338ea37127b4f42a003510fdabf331fb2e239b3c Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Sat, 10 Jun 2023 22:26:21 +0200 Subject: [PATCH] statiegeld: fix typo in ansi escape --- plugins/statiegeld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/statiegeld b/plugins/statiegeld index f7c535b..e1716ef 100644 --- a/plugins/statiegeld +++ b/plugins/statiegeld @@ -113,7 +113,7 @@ sub hook_prompt { # ($class, $cart, $prompt), but via @_ for mutable alias # The message is prepended to the prompt, so it is printed after # clear-screen (^L). The color is repeated on the second line because # readline redraws only the last line of a multiline prompt. - my $yellow = "\x01\e[e33;1m\x02"; + my $yellow = "\x01\e[33;1m\x02"; my $reset = "\x01\e[m\x02"; my $statiegeld_prompt = "$yellow$message$reset\n$yellow+>$reset";