From 51009f82414262340aa861d55abdd78ebfcb370d Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Mon, 28 Sep 2020 22:13:33 +0530 Subject: [PATCH] Fix #744 --- src/nnn.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 82a80eb8..5110a14f 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -5716,11 +5716,16 @@ static void redraw(char *path) attroff(A_UNDERLINE | COLOR_PAIR(cfg.curctx + 1)); - /* Go to first entry */ - move(2, 0); - ncols = adjust_cols(ncols); + /* Go to first entry */ + if (curscroll > 0) { + move(1, 0); + addch('^'); + } + + move(2, 0); + if (g_state.oldcolor) { attron(COLOR_PAIR(cfg.curctx + 1) | A_BOLD); g_state.dircolor = 1; @@ -5736,6 +5741,12 @@ static void redraw(char *path) g_state.dircolor = 0; } + /* Go to first entry */ + if (i < ndents) { + move(xlines - 2, 0); + addch('v'); + } + statusbar(path); }