From b47ef6a085bf06a12116422bb023f48a9eaf3379 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 7 Mar 2013 21:42:25 +0100 Subject: [PATCH] pager: add -M to $LESS to make the bottom line nicer --- src/shared/pager.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shared/pager.c b/src/shared/pager.c index e9aa022a7..8dddf24f4 100644 --- a/src/shared/pager.c +++ b/src/shared/pager.c @@ -86,9 +86,9 @@ int pager_open(bool jump_to_end) { close_pipe(fd); if (jump_to_end) - setenv("LESS", "FRSXK+G", 1); + setenv("LESS", "FRSXMK+G", 1); else - setenv("LESS", "FRSXK", 1); + setenv("LESS", "FRSXMK", 1); /* Make sure the pager goes away when the parent dies */ if (prctl(PR_SET_PDEATHSIG, SIGTERM) < 0) -- 2.30.2