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 /Documentation/config.txt | |
parent | df8e472cc1bbd14a60d22b0b124f07046c6e1fa2 (diff) | |
download | git-5621068f3d3c537b79b76201928c0b06025479ee.tar.gz |
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 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 836f731873..93ecd728ab 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -163,7 +163,7 @@ hex, like `#ff0ab3`. The accepted attributes are `bold`, `dim`, `ul`, `blink`, and `reverse`. 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` (e.g., `noreverse`, `noul`, etc). +by prefixing them with `no` or `no-` (e.g., `noreverse`, `no-ul`, etc). + For git's pre-defined color slots, the attributes are meant to be reset at the beginning of each item in the colored output. So setting |