From df0c96d8bc2aef87ac93c76e571c9023ac4f9ee1 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 19 Mar 2022 08:58:54 +0100 Subject: [PATCH] ansi-colours: : in the wrong place --- .config/zsh/functions/ansi-colours | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/zsh/functions/ansi-colours b/.config/zsh/functions/ansi-colours index b713146..176a80b 100644 --- a/.config/zsh/functions/ansi-colours +++ b/.config/zsh/functions/ansi-colours @@ -9,7 +9,7 @@ function _ansi-colors_8() local title="${1}" local start="${2}" - print "\e[1;97m${title}\e[0m:" + print "\e[1;97m${title}:\e[0m" print "Regular Bold Underline Italic Crossed Dim Blinking Reversed Background" for n in {${start}..$(( ${start}+7 ))}; do local nbg=$(( ${n}+10 ))