chiark / gitweb /
pager: add -M to $LESS to make the bottom line nicer
authorLennart Poettering <lennart@poettering.net>
Thu, 7 Mar 2013 20:42:25 +0000 (21:42 +0100)
committerLennart Poettering <lennart@poettering.net>
Thu, 7 Mar 2013 20:43:28 +0000 (21:43 +0100)
src/shared/pager.c

index e9aa022a73fe3718f5ebf53935a5a80bf1d88a42..8dddf24f4c7816ba7e739016563f4c92b282cca2 100644 (file)
@@ -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)