From da1f014b7050195d7f3e6f849bc105d87efc227b Mon Sep 17 00:00:00 2001 From: Moritz Poldrack Date: Wed, 10 May 2023 14:18:28 +0200 Subject: config: update default pager Since aercs embedded terminal now behaves correctly, a messages contents are at the bottom of the pager by default, this has already sparked confusion as this is uncommon and not matching previous behaviour. Thanks: Stacy Harper Suggested-by: Tim Culverhouse Signed-off-by: Moritz Poldrack Acked-by: Robin Jarry --- config/viewer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/viewer.go') diff --git a/config/viewer.go b/config/viewer.go index 091fb4b6..8ebe82a5 100644 --- a/config/viewer.go +++ b/config/viewer.go @@ -6,7 +6,7 @@ import ( ) type ViewerConfig struct { - Pager string `ini:"pager" default:"less -R"` + Pager string `ini:"pager" default:"less -Rc"` Alternatives []string `ini:"alternatives" default:"text/plain,text/html" delim:","` ShowHeaders bool `ini:"show-headers"` AlwaysShowMime bool `ini:"always-show-mime"` -- cgit