diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/aerc.conf | 4 | ||||
-rw-r--r-- | config/viewer.go | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/config/aerc.conf b/config/aerc.conf index 800e6ec6..7d33b43d 100644 --- a/config/aerc.conf +++ b/config/aerc.conf @@ -338,8 +338,8 @@ # may add ANSI codes to add color to rendered emails, so you may want to use a # pager which supports ANSI codes. # -# Default: less -R -#pager=less -R +# Default: less -Rc +#pager=less -Rc # # If an email offers several versions (multipart), you can configure which 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"` |