From: Jonas Fonseca Date: Mon, 11 Sep 2006 23:36:32 +0000 (+0200) Subject: Also color Acked-by lines X-Git-Tag: tig-0.5~23 X-Git-Url: https://git.distorted.org.uk/~mdw/tig/commitdiff_plain/d4d8de8fb345853df54a2b3f25a1c9824ee6dedb Also color Acked-by lines --- diff --git a/tig.c b/tig.c index 398f777..66c5f76 100644 --- a/tig.c +++ b/tig.c @@ -565,6 +565,7 @@ LINE(TREE, "tree ", COLOR_BLUE, COLOR_DEFAULT, 0), \ LINE(AUTHOR, "author ", COLOR_CYAN, COLOR_DEFAULT, 0), \ LINE(COMMITTER, "committer ", COLOR_MAGENTA, COLOR_DEFAULT, 0), \ LINE(SIGNOFF, " Signed-off-by", COLOR_YELLOW, COLOR_DEFAULT, 0), \ +LINE(ACKED, " Acked-by", COLOR_YELLOW, COLOR_DEFAULT, 0), \ LINE(DEFAULT, "", COLOR_DEFAULT, COLOR_DEFAULT, A_NORMAL), \ LINE(CURSOR, "", COLOR_WHITE, COLOR_GREEN, A_BOLD), \ LINE(STATUS, "", COLOR_GREEN, COLOR_DEFAULT, 0), \ diff --git a/tigrc.5.txt b/tigrc.5.txt index 354d46f..7c49c59 100644 --- a/tigrc.5.txt +++ b/tigrc.5.txt @@ -336,9 +336,9 @@ omnipresent. Commit message:: -For now only `Signed-off-by` lines are colorized. +For now only `Signed-off-by` and `Acked-by` lines are colorized. -*signoff* +*signoff*, *acked* --