summaryrefslogtreecommitdiff
path: root/t/t4026-color.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-06-23 17:38:44 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-06-23 18:32:51 (GMT)
commit5621068f3d3c537b79b76201928c0b06025479ee (patch)
treedbb28952f325a01983a48efb2de98682fa165159 /t/t4026-color.sh
parentdf8e472cc1bbd14a60d22b0b124f07046c6e1fa2 (diff)
downloadgit-5621068f3d3c537b79b76201928c0b06025479ee.zip
git-5621068f3d3c537b79b76201928c0b06025479ee.tar.gz
git-5621068f3d3c537b79b76201928c0b06025479ee.tar.bz2
color: allow "no-" for negating attributes
Using "no-bold" rather than "nobold" is easier to read and more natural to type (to me, anyway, even though I was the person who introduced "nobold" in the first place). It's easy to allow both. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4026-color.sh')
-rwxr-xr-xt/t4026-color.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t4026-color.sh b/t/t4026-color.sh
index 2b32c4f..2065752 100755
--- a/t/t4026-color.sh
+++ b/t/t4026-color.sh
@@ -50,6 +50,10 @@ test_expect_success 'attr negation' '
color "nobold nodim noul noblink noreverse" "[22;24;25;27m"
'
+test_expect_success '"no-" variant of negation' '
+ color "no-bold no-blink" "[22;25m"
+'
+
test_expect_success 'long color specification' '
color "254 255 bold dim ul blink reverse" "[1;2;4;5;7;38;5;254;48;5;255m"
'