From 7809b830db99dbed8b0669bac221411ecad964ed Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Wed, 4 Feb 2009 11:11:24 +0100 Subject: [PATCH] tigrc(5): document the tree view colors Also renames the tree-parent line to tree-head. --- tig.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tig.c b/tig.c index f1c8211..d875b0e 100644 --- a/tig.c +++ b/tig.c @@ -939,7 +939,7 @@ LINE(MAIN_TRACKED, "", COLOR_YELLOW, COLOR_DEFAULT, A_BOLD), \ LINE(MAIN_REF, "", COLOR_CYAN, COLOR_DEFAULT, 0), \ LINE(MAIN_HEAD, "", COLOR_CYAN, COLOR_DEFAULT, A_BOLD), \ LINE(MAIN_REVGRAPH,"", COLOR_MAGENTA, COLOR_DEFAULT, 0), \ -LINE(TREE_PARENT, "", COLOR_DEFAULT, COLOR_DEFAULT, A_BOLD), \ +LINE(TREE_HEAD, "", COLOR_DEFAULT, COLOR_DEFAULT, A_BOLD), \ LINE(TREE_DIR, "", COLOR_YELLOW, COLOR_DEFAULT, A_NORMAL), \ LINE(TREE_FILE, "", COLOR_DEFAULT, COLOR_DEFAULT, A_NORMAL), \ LINE(STAT_HEAD, "", COLOR_YELLOW, COLOR_DEFAULT, 0), \ @@ -3860,7 +3860,7 @@ tree_read_date(struct view *view, char *text, bool *read_date) struct io io = {}; if (!view->lines) { - tree_entry(view, LINE_TREE_PARENT, opt_path, NULL, NULL); + tree_entry(view, LINE_TREE_HEAD, opt_path, NULL, NULL); report("Tree is empty"); return TRUE; } @@ -3932,7 +3932,7 @@ tree_read(struct view *view, char *text) if (textlen <= SIZEOF_TREE_ATTR) return FALSE; if (view->lines == 0 && - !tree_entry(view, LINE_TREE_PARENT, opt_path, NULL, NULL)) + !tree_entry(view, LINE_TREE_HEAD, opt_path, NULL, NULL)) return FALSE; /* Strip the path part ... */ @@ -3983,7 +3983,7 @@ tree_draw(struct view *view, struct line *line, unsigned int lineno) { struct tree_entry *entry = line->data; - if (line->type == LINE_TREE_PARENT) { + if (line->type == LINE_TREE_HEAD) { if (draw_text(view, line->type, "Directory path /", TRUE)) return TRUE; } else { -- 2.32.0.93.g670b81a890