Fix uninitialized variable warning
[tig] / tig.c
diff --git a/tig.c b/tig.c
index 39d63e7..dc48eed 100644 (file)
--- a/tig.c
+++ b/tig.c
@@ -103,6 +103,8 @@ static size_t utf8_length(const char *string, size_t max_width, int *trimmed, bo
 
 #define        SCALE_SPLIT_VIEW(height)        ((height) * 2 / 3)
 
+#define NULL_ID                "0000000000000000000000000000000000000000"
+
 #ifndef GIT_CONFIG
 #define GIT_CONFIG "git config"
 #endif
@@ -145,6 +147,7 @@ struct ref {
        unsigned int ltag:1;    /* If so, is the tag local? */
        unsigned int remote:1;  /* Is it a remote ref? */
        unsigned int next:1;    /* For ref lists: are there more refs? */
+       unsigned int head:1;    /* Is it the current HEAD? */
 };
 
 static struct ref **get_refs(char *id);
@@ -442,6 +445,8 @@ static char opt_cmd[SIZEOF_STR]             = "";
 static char opt_path[SIZEOF_STR]       = "";
 static char opt_file[SIZEOF_STR]       = "";
 static char opt_ref[SIZEOF_REF]                = "";
+static char opt_head[SIZEOF_REF]       = "";
+static bool opt_no_head                        = TRUE;
 static FILE *opt_pipe                  = NULL;
 static char opt_encoding[20]           = "UTF-8";
 static bool opt_utf8                   = TRUE;
@@ -519,7 +524,7 @@ parse_options(int argc, char *argv[])
                        return FALSE;
 
                } else if (!strcmp(opt, "-h") || !strcmp(opt, "--help")) {
-                       printf(usage);
+                       printf("%s\n", usage);
                        return FALSE;
                }
 
@@ -577,19 +582,21 @@ 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), \
+LINE(DELIMITER,           "",                  COLOR_MAGENTA,  COLOR_DEFAULT,  0), \
 LINE(TITLE_BLUR,   "",                 COLOR_WHITE,    COLOR_BLUE,     0), \
 LINE(TITLE_FOCUS,  "",                 COLOR_WHITE,    COLOR_BLUE,     A_BOLD), \
 LINE(MAIN_DATE,    "",                 COLOR_BLUE,     COLOR_DEFAULT,  0), \
 LINE(MAIN_AUTHOR,  "",                 COLOR_GREEN,    COLOR_DEFAULT,  0), \
 LINE(MAIN_COMMIT,  "",                 COLOR_DEFAULT,  COLOR_DEFAULT,  0), \
-LINE(MAIN_DELIM,   "",                 COLOR_MAGENTA,  COLOR_DEFAULT,  0), \
 LINE(MAIN_TAG,     "",                 COLOR_MAGENTA,  COLOR_DEFAULT,  A_BOLD), \
 LINE(MAIN_LOCAL_TAG,"",                        COLOR_MAGENTA,  COLOR_DEFAULT,  A_BOLD), \
 LINE(MAIN_REMOTE,  "",                 COLOR_YELLOW,   COLOR_DEFAULT,  A_BOLD), \
 LINE(MAIN_REF,     "",                 COLOR_CYAN,     COLOR_DEFAULT,  A_BOLD), \
+LINE(MAIN_HEAD,    "",                 COLOR_RED,      COLOR_DEFAULT,  A_BOLD), \
 LINE(MAIN_REVGRAPH,"",                 COLOR_MAGENTA,  COLOR_DEFAULT,  0), \
 LINE(TREE_DIR,     "",                 COLOR_DEFAULT,  COLOR_DEFAULT,  A_NORMAL), \
 LINE(TREE_FILE,    "",                 COLOR_DEFAULT,  COLOR_DEFAULT,  A_NORMAL), \
+LINE(STAT_HEAD,    "",                 COLOR_YELLOW,   COLOR_DEFAULT,  0), \
 LINE(STAT_SECTION, "",                 COLOR_CYAN,     COLOR_DEFAULT,  0), \
 LINE(STAT_NONE,    "",                 COLOR_DEFAULT,  COLOR_DEFAULT,  0), \
 LINE(STAT_STAGED,  "",                 COLOR_MAGENTA,  COLOR_DEFAULT,  0), \
@@ -646,8 +653,9 @@ get_line_attr(enum line_type type)
 }
 
 static struct line_info *
-get_line_info(char *name, int namelen)
+get_line_info(char *name)
 {
+       size_t namelen = strlen(name);
        enum line_type type;
 
        for (type = 0; type < ARRAY_SIZE(line_info); type++)
@@ -1043,10 +1051,15 @@ option_color_command(int argc, char *argv[])
                return ERR;
        }
 
-       info = get_line_info(argv[0], strlen(argv[0]));
+       info = get_line_info(argv[0]);
        if (!info) {
-               config_msg = "Unknown color name";
-               return ERR;
+               if (!string_enum_compare(argv[0], "main-delim", strlen("main-delim"))) {
+                       info = get_line_info("delimiter");
+
+               } else {
+                       config_msg = "Unknown color name";
+                       return ERR;
+               }
        }
 
        if (set_color(&info->fg, argv[1]) == ERR ||
@@ -1433,7 +1446,7 @@ static struct view views[] = {
 
 static int
 draw_text(struct view *view, const char *string, int max_len,
-         bool use_tilde, int tilde_attr)
+         bool use_tilde, bool selected)
 {
        int len = 0;
        int trimmed = FALSE;
@@ -1456,8 +1469,8 @@ draw_text(struct view *view, const char *string, int max_len,
 
        waddnstr(view->win, string, len);
        if (trimmed && use_tilde) {
-               if (tilde_attr != -1)
-                       wattrset(view->win, tilde_attr);
+               if (!selected)
+                       wattrset(view->win, get_line_attr(LINE_DELIMITER));
                waddch(view->win, '~');
                len++;
        }
@@ -2172,7 +2185,6 @@ update_view(struct view *view)
                 * might have rearranged things. */
                redraw_view(view);
 
-
        } else if (redraw_from >= 0) {
                /* If this is an incremental update, redraw the previous line
                 * since for commits some members could have changed when
@@ -2728,9 +2740,7 @@ pager_draw(struct view *view, struct line *line, unsigned int lineno, bool selec
                }
 
        } else {
-               int tilde_attr = get_line_attr(LINE_MAIN_DELIM);
-
-               draw_text(view, text, view->width, TRUE, tilde_attr);
+               draw_text(view, text, view->width, TRUE, selected);
        }
 
        return TRUE;
@@ -3159,8 +3169,8 @@ tree_request(struct view *view, enum request request, struct line *line)
                        return REQ_NONE;
                }
 
-               string_copy(opt_ref, ref_commit);
-               string_ncopy(opt_file, filename, strlen(filename));
+               string_copy(opt_ref, view->vid);
+               string_format(opt_file, "%s%s", opt_path, filename);
                return request;
        }
        if (request == REQ_TREE_PARENT) {
@@ -3404,9 +3414,9 @@ parse_blame_commit(struct view *view, char *text, int *blamed)
 
                blame = line->data;
                blame->commit = commit;
+               blame->header = !group;
                line->dirty = 1;
        }
-       blame->header = 1;
 
        return commit;
 }
@@ -3516,7 +3526,6 @@ blame_read(struct view *view, char *line)
 static bool
 blame_draw(struct view *view, struct line *line, unsigned int lineno, bool selected)
 {
-       int tilde_attr = -1;
        struct blame *blame = line->data;
        int col = 0;
 
@@ -3527,7 +3536,6 @@ blame_draw(struct view *view, struct line *line, unsigned int lineno, bool selec
                wchgat(view->win, -1, 0, LINE_CURSOR, NULL);
        } else {
                wattrset(view->win, A_NORMAL);
-               tilde_attr = get_line_attr(LINE_MAIN_DELIM);
        }
 
        if (opt_date) {
@@ -3540,8 +3548,8 @@ blame_draw(struct view *view, struct line *line, unsigned int lineno, bool selec
                        int timelen;
 
                        timelen = strftime(buf, sizeof(buf), DATE_FORMAT, &blame->commit->time);
-                       n = draw_text(view, buf, view->width - col, FALSE, tilde_attr);
-                       draw_text(view, " ", view->width - col - n, FALSE, tilde_attr);
+                       n = draw_text(view, buf, view->width - col, FALSE, selected);
+                       draw_text(view, " ", view->width - col - n, FALSE, selected);
                }
 
                col += DATE_COLS;
@@ -3556,7 +3564,7 @@ blame_draw(struct view *view, struct line *line, unsigned int lineno, bool selec
                if (!selected)
                        wattrset(view->win, get_line_attr(LINE_MAIN_AUTHOR));
                if (blame->commit)
-                       draw_text(view, blame->commit->author, max, TRUE, tilde_attr);
+                       draw_text(view, blame->commit->author, max, TRUE, selected);
                col += AUTHOR_COLS;
                if (col >= view->width)
                        return TRUE;
@@ -3598,7 +3606,7 @@ blame_draw(struct view *view, struct line *line, unsigned int lineno, bool selec
                        max = view->width - col;
                if (!selected)
                        wattrset(view->win, get_line_attr(LINE_BLAME_LINENO));
-               col += draw_text(view, number, max, showtrimmed, tilde_attr);
+               col += draw_text(view, number, max, showtrimmed, selected);
                if (col >= view->width)
                        return TRUE;
        }
@@ -3614,7 +3622,7 @@ blame_draw(struct view *view, struct line *line, unsigned int lineno, bool selec
                return TRUE;
        waddch(view->win, ' ');
        col++;
-       col += draw_text(view, blame->text, view->width - col, TRUE, tilde_attr);
+       col += draw_text(view, blame->text, view->width - col, TRUE, selected);
 
        return TRUE;
 }
@@ -3632,7 +3640,7 @@ blame_request(struct view *view, enum request request, struct line *line)
                        break;
                }
 
-               if (!strcmp(blame->commit->id, "0000000000000000000000000000000000000000")) {
+               if (!strcmp(blame->commit->id, NULL_ID)) {
                        char path[SIZEOF_STR];
 
                        if (sq_quote(path, 0, view->vid) >= sizeof(path))
@@ -3687,7 +3695,7 @@ blame_select(struct view *view, struct line *line)
        if (!commit)
                return;
 
-       if (!strcmp(commit->id, "0000000000000000000000000000000000000000"))
+       if (!strcmp(commit->id, NULL_ID))
                string_ncopy(ref_commit, "HEAD", 4);
        else
                string_copy_rev(ref_commit, commit->id);
@@ -3721,6 +3729,7 @@ struct status {
        } new;
 };
 
+static char status_onbranch[SIZEOF_STR];
 static struct status stage_status;
 static enum line_type stage_line_type;
 
@@ -3758,7 +3767,7 @@ status_get_diff(struct status *file, char *buf, size_t bufsize)
 }
 
 static bool
-status_run(struct view *view, const char cmd[], bool diff, enum line_type type)
+status_run(struct view *view, const char cmd[], char status, enum line_type type)
 {
        struct status *file = NULL;
        struct status *unmerged = NULL;
@@ -3797,8 +3806,10 @@ status_run(struct view *view, const char cmd[], bool diff, enum line_type type)
                        }
 
                        /* Parse diff info part. */
-                       if (!diff) {
-                               file->status = '?';
+                       if (status) {
+                               file->status = status;
+                               if (status == 'A')
+                                       string_copy(file->old.rev, NULL_ID);
 
                        } else if (!file->status) {
                                if (!status_get_diff(file, buf, sepsize))
@@ -3874,6 +3885,8 @@ error_out:
 #define STATUS_DIFF_FILES_CMD "git diff-files -z"
 #define STATUS_LIST_OTHER_CMD \
        "git ls-files -z --others --exclude-per-directory=.gitignore"
+#define STATUS_LIST_NO_HEAD_CMD \
+       "git ls-files -z --cached --exclude-per-directory=.gitignore"
 
 #define STATUS_DIFF_INDEX_SHOW_CMD \
        "git diff-index --root --patch-with-stat -C -M --cached HEAD -- %s %s 2>/dev/null"
@@ -3881,6 +3894,9 @@ error_out:
 #define STATUS_DIFF_FILES_SHOW_CMD \
        "git diff-files --root --patch-with-stat -C -M -- %s %s 2>/dev/null"
 
+#define STATUS_DIFF_NO_HEAD_SHOW_CMD \
+       "git diff --no-color --patch-with-stat /dev/null %s 2>/dev/null"
+
 /* First parse staged info using git-diff-index(1), then parse unstaged
  * info using git-diff-files(1), and finally untracked files using
  * git-ls-files(1). */
@@ -3889,8 +3905,10 @@ status_open(struct view *view)
 {
        struct stat statbuf;
        char exclude[SIZEOF_STR];
-       char cmd[SIZEOF_STR];
+       char indexcmd[SIZEOF_STR] = STATUS_DIFF_INDEX_CMD;
+       char othercmd[SIZEOF_STR] = STATUS_LIST_OTHER_CMD;
        unsigned long prev_lineno = view->lineno;
+       char indexstatus = 0;
        size_t i;
 
        for (i = 0; i < view->lines; i++)
@@ -3899,35 +3917,59 @@ status_open(struct view *view)
        view->lines = view->line_alloc = view->line_size = view->lineno = 0;
        view->line = NULL;
 
-       if (!realloc_lines(view, view->line_size + 6))
+       if (!realloc_lines(view, view->line_size + 7))
                return FALSE;
 
-       if (!string_format(exclude, "%s/info/exclude", opt_git_dir))
+       add_line_data(view, NULL, LINE_STAT_HEAD);
+       if (opt_no_head)
+               string_copy(status_onbranch, "Initial commit");
+       else if (!*opt_head)
+               string_copy(status_onbranch, "Not currently on any branch");
+       else if (!string_format(status_onbranch, "On branch %s", opt_head))
                return FALSE;
 
-       string_copy(cmd, STATUS_LIST_OTHER_CMD);
+       if (opt_no_head) {
+               string_copy(indexcmd, STATUS_LIST_NO_HEAD_CMD);
+               indexstatus = 'A';
+       }
+
+       if (!string_format(exclude, "%s/info/exclude", opt_git_dir))
+               return FALSE;
 
        if (stat(exclude, &statbuf) >= 0) {
-               size_t cmdsize = strlen(cmd);
+               size_t cmdsize = strlen(othercmd);
 
-               if (!string_format_from(cmd, &cmdsize, " %s", "--exclude-from=") ||
-                   sq_quote(cmd, cmdsize, exclude) >= sizeof(cmd))
+               if (!string_format_from(othercmd, &cmdsize, " %s", "--exclude-from=") ||
+                   sq_quote(othercmd, cmdsize, exclude) >= sizeof(othercmd))
+                       return FALSE;
+
+               cmdsize = strlen(indexcmd);
+               if (opt_no_head &&
+                   (!string_format_from(indexcmd, &cmdsize, " %s", "--exclude-from=") ||
+                    sq_quote(indexcmd, cmdsize, exclude) >= sizeof(indexcmd)))
                        return FALSE;
        }
 
        system("git update-index -q --refresh");
 
-       if (!status_run(view, STATUS_DIFF_INDEX_CMD, TRUE, LINE_STAT_STAGED) ||
-           !status_run(view, STATUS_DIFF_FILES_CMD, TRUE, LINE_STAT_UNSTAGED) ||
-           !status_run(view, cmd, FALSE, LINE_STAT_UNTRACKED))
+       if (!status_run(view, indexcmd, indexstatus, LINE_STAT_STAGED) ||
+           !status_run(view, STATUS_DIFF_FILES_CMD, 0, LINE_STAT_UNSTAGED) ||
+           !status_run(view, othercmd, '?', LINE_STAT_UNTRACKED))
                return FALSE;
 
        /* If all went well restore the previous line number to stay in
-        * the context. */
+        * the context or select a line with something that can be
+        * updated. */
+       if (prev_lineno >= view->lines)
+               prev_lineno = view->lines - 1;
+       while (prev_lineno < view->lines && !view->line[prev_lineno].data)
+               prev_lineno++;
+
+       /* If the above fails, always skip the "On branch" line. */
        if (prev_lineno < view->lines)
                view->lineno = prev_lineno;
        else
-               view->lineno = view->lines - 1;
+               view->lineno = 1;
 
        return TRUE;
 }
@@ -3936,14 +3978,16 @@ static bool
 status_draw(struct view *view, struct line *line, unsigned int lineno, bool selected)
 {
        struct status *status = line->data;
-       int tilde_attr = get_line_attr(LINE_MAIN_DELIM);
 
        wmove(view->win, lineno, 0);
 
        if (selected) {
                wattrset(view->win, get_line_attr(LINE_CURSOR));
                wchgat(view->win, -1, 0, LINE_CURSOR, NULL);
-               tilde_attr = -1;
+
+       } else if (line->type == LINE_STAT_HEAD) {
+               wattrset(view->win, get_line_attr(LINE_STAT_HEAD));
+               wchgat(view->win, -1, 0, LINE_STAT_HEAD, NULL);
 
        } else if (!status && line->type != LINE_STAT_NONE) {
                wattrset(view->win, get_line_attr(LINE_STAT_SECTION));
@@ -3973,11 +4017,15 @@ status_draw(struct view *view, struct line *line, unsigned int lineno, bool sele
                        text = "    (no files)";
                        break;
 
+               case LINE_STAT_HEAD:
+                       text = status_onbranch;
+                       break;
+
                default:
                        return FALSE;
                }
 
-               draw_text(view, text, view->width, TRUE, tilde_attr);
+               draw_text(view, text, view->width, TRUE, selected);
                return TRUE;
        }
 
@@ -3988,7 +4036,7 @@ status_draw(struct view *view, struct line *line, unsigned int lineno, bool sele
        if (view->width < 5)
                return TRUE;
 
-       draw_text(view, status->new.name, view->width - 5, TRUE, tilde_attr);
+       draw_text(view, status->new.name, view->width - 5, TRUE, selected);
        return TRUE;
 }
 
@@ -4024,9 +4072,18 @@ status_enter(struct view *view, struct line *line)
 
        switch (line->type) {
        case LINE_STAT_STAGED:
-               if (!string_format_from(opt_cmd, &cmdsize,
-                                       STATUS_DIFF_INDEX_SHOW_CMD, oldpath, newpath))
-                       return REQ_QUIT;
+               if (opt_no_head) {
+                       if (!string_format_from(opt_cmd, &cmdsize,
+                                               STATUS_DIFF_NO_HEAD_SHOW_CMD,
+                                               newpath))
+                               return REQ_QUIT;
+               } else {
+                       if (!string_format_from(opt_cmd, &cmdsize,
+                                               STATUS_DIFF_INDEX_SHOW_CMD,
+                                               oldpath, newpath))
+                               return REQ_QUIT;
+               }
+
                if (status)
                        info = "Staged changes to %s";
                else
@@ -4047,7 +4104,6 @@ status_enter(struct view *view, struct line *line)
                if (opt_pipe)
                        return REQ_QUIT;
 
-
                if (!status) {
                        report("No file to show");
                        return REQ_NONE;
@@ -4057,6 +4113,9 @@ status_enter(struct view *view, struct line *line)
                info = "Untracked file %s";
                break;
 
+       case LINE_STAT_HEAD:
+               return REQ_NONE;
+
        default:
                die("line type %d not handled in switch", line->type);
        }
@@ -4111,6 +4170,9 @@ status_update_file(struct view *view, struct status *status, enum line_type type
                string_add(cmd, cmdsize, "git update-index -z --add --remove --stdin");
                break;
 
+       case LINE_STAT_HEAD:
+               return TRUE;
+
        default:
                die("line type %d not handled in switch", type);
        }
@@ -4131,7 +4193,7 @@ status_update_file(struct view *view, struct status *status, enum line_type type
        return TRUE;
 }
 
-static void
+static bool
 status_update(struct view *view)
 {
        struct line *line = &view->line[view->lineno];
@@ -4146,12 +4208,14 @@ status_update(struct view *view)
 
                if (!line[-1].data) {
                        report("Nothing to update");
-                       return;
+                       return FALSE;
                }
 
        } else if (!status_update_file(view, line->data, line->type)) {
                report("Failed to update file status");
        }
+
+       return TRUE;
 }
 
 static enum request
@@ -4161,7 +4225,8 @@ status_request(struct view *view, enum request request, struct line *line)
 
        switch (request) {
        case REQ_STATUS_UPDATE:
-               status_update(view);
+               if (!status_update(view))
+                       return REQ_NONE;
                break;
 
        case REQ_STATUS_MERGE:
@@ -4233,6 +4298,7 @@ status_select(struct view *view, struct line *line)
                text = "Press %s to stage %s for addition";
                break;
 
+       case LINE_STAT_HEAD:
        case LINE_STAT_NONE:
                text = "Nothing to update";
                break;
@@ -4404,7 +4470,7 @@ stage_update_chunk(struct view *view, struct line *line)
 static void
 stage_update(struct view *view, struct line *line)
 {
-       if (stage_line_type != LINE_STAT_UNTRACKED &&
+       if (!opt_no_head && stage_line_type != LINE_STAT_UNTRACKED &&
            (line->type == LINE_DIFF_CHUNK || !stage_status.status)) {
                if (!stage_update_chunk(view, line)) {
                        report("Failed to apply chunk");
@@ -4685,7 +4751,6 @@ main_draw(struct view *view, struct line *line, unsigned int lineno, bool select
        enum line_type type;
        int col = 0;
        size_t timelen;
-       int tilde_attr;
        int space;
 
        if (!*commit->author)
@@ -4698,19 +4763,17 @@ main_draw(struct view *view, struct line *line, unsigned int lineno, bool select
                type = LINE_CURSOR;
                wattrset(view->win, get_line_attr(type));
                wchgat(view->win, -1, 0, type, NULL);
-               tilde_attr = -1;
        } else {
                type = LINE_MAIN_COMMIT;
                wattrset(view->win, get_line_attr(LINE_MAIN_DATE));
-               tilde_attr = get_line_attr(LINE_MAIN_DELIM);
        }
 
        if (opt_date) {
                int n;
 
                timelen = strftime(buf, sizeof(buf), DATE_FORMAT, &commit->time);
-               n = draw_text(view, buf, view->width - col, FALSE, tilde_attr);
-               draw_text(view, " ", view->width - col - n, FALSE, tilde_attr);
+               n = draw_text(view, buf, view->width - col, FALSE, selected);
+               draw_text(view, " ", view->width - col - n, FALSE, selected);
 
                col += DATE_COLS;
                wmove(view->win, lineno, col);
@@ -4726,7 +4789,7 @@ main_draw(struct view *view, struct line *line, unsigned int lineno, bool select
                max_len = view->width - col;
                if (max_len > AUTHOR_COLS - 1)
                        max_len = AUTHOR_COLS - 1;
-               draw_text(view, commit->author, max_len, TRUE, tilde_attr);
+               draw_text(view, commit->author, max_len, TRUE, selected);
                col += AUTHOR_COLS;
                if (col >= view->width)
                        return TRUE;
@@ -4762,6 +4825,8 @@ main_draw(struct view *view, struct line *line, unsigned int lineno, bool select
                do {
                        if (type == LINE_CURSOR)
                                ;
+                       else if (commit->refs[i]->head)
+                               wattrset(view->win, get_line_attr(LINE_MAIN_HEAD));
                        else if (commit->refs[i]->ltag)
                                wattrset(view->win, get_line_attr(LINE_MAIN_LOCAL_TAG));
                        else if (commit->refs[i]->tag)
@@ -4771,13 +4836,13 @@ main_draw(struct view *view, struct line *line, unsigned int lineno, bool select
                        else
                                wattrset(view->win, get_line_attr(LINE_MAIN_REF));
 
-                       col += draw_text(view, "[", view->width - col, TRUE, tilde_attr);
+                       col += draw_text(view, "[", view->width - col, TRUE, selected);
                        col += draw_text(view, commit->refs[i]->name, view->width - col,
-                                        TRUE, tilde_attr);
-                       col += draw_text(view, "]", view->width - col, TRUE, tilde_attr);
+                                        TRUE, selected);
+                       col += draw_text(view, "]", view->width - col, TRUE, selected);
                        if (type != LINE_CURSOR)
                                wattrset(view->win, A_NORMAL);
-                       col += draw_text(view, " ", view->width - col, TRUE, tilde_attr);
+                       col += draw_text(view, " ", view->width - col, TRUE, selected);
                        if (col >= view->width)
                                return TRUE;
                } while (commit->refs[i++]->next);
@@ -4786,7 +4851,7 @@ main_draw(struct view *view, struct line *line, unsigned int lineno, bool select
        if (type != LINE_CURSOR)
                wattrset(view->win, get_line_attr(type));
 
-       draw_text(view, commit->title, view->width - col, TRUE, tilde_attr);
+       draw_text(view, commit->title, view->width - col, TRUE, selected);
        return TRUE;
 }
 
@@ -5374,6 +5439,7 @@ read_ref(char *id, size_t idlen, char *name, size_t namelen)
        bool ltag = FALSE;
        bool remote = FALSE;
        bool check_replace = FALSE;
+       bool head = FALSE;
 
        if (!strncmp(name, "refs/tags/", STRING_SIZE("refs/tags/"))) {
                if (!strcmp(name + namelen - 3, "^{}")) {
@@ -5397,8 +5463,10 @@ read_ref(char *id, size_t idlen, char *name, size_t namelen)
        } else if (!strncmp(name, "refs/heads/", STRING_SIZE("refs/heads/"))) {
                namelen -= STRING_SIZE("refs/heads/");
                name    += STRING_SIZE("refs/heads/");
+               head     = !strncmp(opt_head, name, namelen);
 
        } else if (!strcmp(name, "HEAD")) {
+               opt_no_head = FALSE;
                return OK;
        }
 
@@ -5426,6 +5494,7 @@ read_ref(char *id, size_t idlen, char *name, size_t namelen)
        ref->tag = tag;
        ref->ltag = ltag;
        ref->remote = remote;
+       ref->head = head;
        string_copy_rev(ref->id, id);
 
        return OK;
@@ -5473,20 +5542,36 @@ read_repo_info(char *name, size_t namelen, char *value, size_t valuelen)
                 * Default to true for the unknown case. */
                opt_is_inside_work_tree = strcmp(name, "false") ? TRUE : FALSE;
 
-       } else {
+       } else if (opt_cdup[0] == ' ') {
                string_ncopy(opt_cdup, name, namelen);
+       } else {
+               if (!strncmp(name, "refs/heads/", STRING_SIZE("refs/heads/"))) {
+                       namelen -= STRING_SIZE("refs/heads/");
+                       name    += STRING_SIZE("refs/heads/");
+                       string_ncopy(opt_head, name, namelen);
+               }
        }
 
        return OK;
 }
 
-/* XXX: The line outputted by "--show-cdup" can be empty so the option
- * must be the last one! */
 static int
 load_repo_info(void)
 {
-       return read_properties(popen("git rev-parse --git-dir --is-inside-work-tree --show-cdup 2>/dev/null", "r"),
-                              "=", read_repo_info);
+       int result;
+       FILE *pipe = popen("git rev-parse --git-dir --is-inside-work-tree "
+                          " --show-cdup --symbolic-full-name HEAD 2>/dev/null", "r");
+
+       /* XXX: The line outputted by "--show-cdup" can be empty so
+        * initialize it to something invalid to make it possible to
+        * detect whether it has been set or not. */
+       opt_cdup[0] = ' ';
+
+       result = read_properties(pipe, "=", read_repo_info);
+       if (opt_cdup[0] == ' ')
+               opt_cdup[0] = 0;
+
+       return result;
 }
 
 static int