diff options
author | Jeff King <peff@peff.net> | 2016-06-23 13:38:44 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-06-23 11:32:51 -0700 |
commit | 5621068f3d3c537b79b76201928c0b06025479ee (patch) | |
tree | dbb28952f325a01983a48efb2de98682fa165159 /t | |
parent | color: refactor parse_attr (diff) | |
download | tgif-5621068f3d3c537b79b76201928c0b06025479ee.tar.xz |
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')
-rwxr-xr-x | t/t4026-color.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t4026-color.sh b/t/t4026-color.sh index 2b32c4fbe6..2065752ff9 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" ' |