aboutsummaryrefslogtreecommitdiff
path: root/Documentation/config.txt
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-06-23 13:40:16 -0400
committerJunio C Hamano <gitster@pobox.com>2016-06-23 11:32:51 -0700
commit9dc3515cf005639317fb95492b3157aadf056923 (patch)
tree2225ac4d85a5ac5f93434edd70fad8a27f715ea1 /Documentation/config.txt
parent54590a0eda10ecfdc39398d662ab3f663491067e (diff)
downloadgit-9dc3515cf005639317fb95492b3157aadf056923.tar.gz
git-9dc3515cf005639317fb95492b3157aadf056923.tar.xz
color: support strike-through attribute
This is the only remaining attribute that is commonly supported (at least by xterm) that we don't support. Let's add it for completeness. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r--Documentation/config.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index cea3835c8..6882e7065 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -160,8 +160,9 @@ Colors may also be given as numbers between 0 and 255; these use ANSI
your terminal supports it, you may also specify 24-bit RGB values as
hex, like `#ff0ab3`.
+
-The accepted attributes are `bold`, `dim`, `ul`, `blink`, `reverse`, and
-`italic`. The position of any attributes with respect to the colors
+The accepted attributes are `bold`, `dim`, `ul`, `blink`, `reverse`,
+`italic`, and `strike` (for crossed-out or "strikethrough" letters).
+The position of any attributes with respect to the colors
(before, after, or in between), doesn't matter. Specific attributes may
be turned off by prefixing them with `no` or `no-` (e.g., `noreverse`,
`no-ul`, etc).