diff options
author | Bert Wesarg <bert.wesarg@googlemail.com> | 2009-11-27 07:55:18 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-28 10:05:44 -0800 |
commit | 89cb73a19ac94d15babf77af490fa5db78908234 (patch) | |
tree | a5cb2dd04e1cfe72868cb475a12bc50d02f78d8e /Documentation/config.txt | |
parent | 06a4755270b86a2af20a5c1f0d785311472b5223 (diff) | |
download | git-89cb73a19ac94d15babf77af490fa5db78908234.tar.gz git-89cb73a19ac94d15babf77af490fa5db78908234.tar.xz |
Give the hunk comment its own color
Inspired by the coloring of quilt.
Introduce a separate color and paint the hunk comment part, i.e. the name
of the function, in a separate color "diff.func" (defaults to plain).
Whitespace between hunk header and hunk comment is printed in plain color.
Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index a8e0876a2..a1e36d7e4 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -635,10 +635,10 @@ color.diff.<slot>:: Use customized color for diff colorization. `<slot>` specifies which part of the patch to use the specified color, and is one of `plain` (context text), `meta` (metainformation), `frag` - (hunk header), `old` (removed lines), `new` (added lines), - `commit` (commit headers), or `whitespace` (highlighting - whitespace errors). The values of these variables may be specified as - in color.branch.<slot>. + (hunk header), 'func' (function in hunk header), `old` (removed lines), + `new` (added lines), `commit` (commit headers), or `whitespace` + (highlighting whitespace errors). The values of these variables may be + specified as in color.branch.<slot>. color.grep:: When set to `always`, always highlight matches. When `false` (or |