From: Arun Prakash Jana Date: Mon, 16 Mar 2020 16:09:44 +0000 (+0530) Subject: Skip erasing the complete screen X-Git-Tag: v3.1~74 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=fc8c5b46b382998e4a25cf4d8bfd5fce4f0831c0;p=nnn.git Skip erasing the complete screen --- diff --git a/src/nnn.c b/src/nnn.c index 2810e0cb..da9ddddf 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -4871,8 +4871,9 @@ static void redraw(char *path) return draw_line(path, ncols); } - /* Clear screen */ - erase(); + /* Clear first line */ + move(0, 0); + clrtoeol(); /* Enforce scroll/cursor invariants */ move_cursor(cur, 1); @@ -4934,11 +4935,11 @@ static void redraw(char *path) } } + attroff(A_UNDERLINE); + /* Go to first entry */ move(2, 0); - attroff(A_UNDERLINE); - ncols = adjust_cols(ncols); attron(COLOR_PAIR(cfg.curctx + 1) | A_BOLD); @@ -4954,6 +4955,9 @@ static void redraw(char *path) cfg.dircolor = 0; } + /* Clear from last entry to end */ + clrtobot(); + statusbar(path); }