aboutsummaryrefslogtreecommitdiffhomepage
path: root/fish_pager.c
diff options
context:
space:
mode:
Diffstat (limited to 'fish_pager.c')
-rw-r--r--fish_pager.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/fish_pager.c b/fish_pager.c
index 87970b2d..855fd14b 100644
--- a/fish_pager.c
+++ b/fish_pager.c
@@ -583,14 +583,13 @@ static int completion_try_print( int cols,
*/
while(do_loop)
{
- wchar_t msg[10];
- int percent = 100*pos/(rows-termsize.ws_row+1);
+ wchar_t msg[30];
+ int percent = 100*(pos+rows)/(2*rows-termsize.ws_row+1);
set_color( FISH_COLOR_BLACK,
get_color(HIGHLIGHT_PAGER_PROGRESS) );
- swprintf( msg, 12,
- L" %ls(%d%%) \r",
- percent==100?L"":(percent >=10?L" ": L" "),
- percent );
+ swprintf( msg, 30,
+ L" %d to %d of %d \r",
+ pos, pos+termsize.ws_row-1, rows );
writestr(msg);
set_color( FISH_COLOR_NORMAL, FISH_COLOR_NORMAL );
pager_flush();