Add GIT_COLOR_BOLD_* and GIT_COLOR_BG_*

Add GIT_COLOR_BOLD_* macros to set both bold and the color in one
sequence.  This saves two characters of output ("ESC [ m", minus ";")
and makes the code more readable.

Add the remaining GIT_COLOR_BG_* macros to make the list complete.
The white and black colors are not included since they look bad on most
terminals.

Signed-off-by: Mark Lodato <lodatom@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Mark Lodato
2010-03-07 11:52:45 -05:00
committed by Junio C Hamano
parent dc05d73104
commit 758df17ab0
3 changed files with 18 additions and 7 deletions

12
graph.c
View File

@ -80,12 +80,12 @@ static char column_colors[][COLOR_MAXLEN] = {
GIT_COLOR_BLUE,
GIT_COLOR_MAGENTA,
GIT_COLOR_CYAN,
GIT_COLOR_BOLD GIT_COLOR_RED,
GIT_COLOR_BOLD GIT_COLOR_GREEN,
GIT_COLOR_BOLD GIT_COLOR_YELLOW,
GIT_COLOR_BOLD GIT_COLOR_BLUE,
GIT_COLOR_BOLD GIT_COLOR_MAGENTA,
GIT_COLOR_BOLD GIT_COLOR_CYAN,
GIT_COLOR_BOLD_RED,
GIT_COLOR_BOLD_GREEN,
GIT_COLOR_BOLD_YELLOW,
GIT_COLOR_BOLD_BLUE,
GIT_COLOR_BOLD_MAGENTA,
GIT_COLOR_BOLD_CYAN,
};
#define COLUMN_COLORS_MAX (ARRAY_SIZE(column_colors))