From 109fad20409071facf6bf78ce3d9b46a5c11e5ef Mon Sep 17 00:00:00 2001 From: sev Date: Thu, 11 Mar 2021 21:31:40 -0600 Subject: [PATCH] zshrc: don't quit on EOF with ps aliases --- base/.zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/.zshrc b/base/.zshrc index c5e4093..be7fb3e 100644 --- a/base/.zshrc +++ b/base/.zshrc @@ -160,7 +160,7 @@ else fi unfunction check-busybox if [[ "$(basename "$PAGER")" = "less" ]] { - ps="$ps | less -SE" + ps="$ps | less -S" } else { ps="$ps | \"${PAGER:-more}\"" } -- 2.47.0