Merge branch 'rs/c-auto-resets-attributes'
The pretty-format specifier "%C(auto)" used by the "log" family of commands to enable coloring of the output is taught to also issue a color-reset sequence to the output. * rs/c-auto-resets-attributes: pretty: let %C(auto) reset all attributes
This commit is contained in:
commit
b3e588a48a
2
pretty.c
2
pretty.c
@ -1072,6 +1072,8 @@ static size_t format_commit_one(struct strbuf *sb, /* in UTF-8 */
|
|||||||
case 'C':
|
case 'C':
|
||||||
if (starts_with(placeholder + 1, "(auto)")) {
|
if (starts_with(placeholder + 1, "(auto)")) {
|
||||||
c->auto_color = want_color(c->pretty_ctx->color);
|
c->auto_color = want_color(c->pretty_ctx->color);
|
||||||
|
if (c->auto_color)
|
||||||
|
strbuf_addstr(sb, GIT_COLOR_RESET);
|
||||||
return 7; /* consumed 7 bytes, "C(auto)" */
|
return 7; /* consumed 7 bytes, "C(auto)" */
|
||||||
} else {
|
} else {
|
||||||
int ret = parse_color(sb, placeholder, c);
|
int ret = parse_color(sb, placeholder, c);
|
||||||
|
@ -225,7 +225,7 @@ test_expect_success '%C(auto,...) respects --color=auto (stdout not tty)' '
|
|||||||
|
|
||||||
test_expect_success '%C(auto) respects --color' '
|
test_expect_success '%C(auto) respects --color' '
|
||||||
git log --color --format="%C(auto)%H" -1 >actual &&
|
git log --color --format="%C(auto)%H" -1 >actual &&
|
||||||
printf "\\033[33m%s\\033[m\\n" $(git rev-parse HEAD) >expect &&
|
printf "\\033[m\\033[33m%s\\033[m\\n" $(git rev-parse HEAD) >expect &&
|
||||||
test_cmp expect actual
|
test_cmp expect actual
|
||||||
'
|
'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user