summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ruby.c b/ruby.c
index 7b233e4106..b2d412c49d 100644
--- a/ruby.c
+++ b/ruby.c
@@ -1801,7 +1801,10 @@ rb_f_chomp(int argc, VALUE *argv, VALUE _)
static void
setup_pager_env(void)
{
- if (!getenv("LESS")) ruby_setenv("LESS", "-R"); // Output "raw" control characters.
+ if (!getenv("LESS")) {
+ // Output "raw" control characters, and move per sections.
+ ruby_setenv("LESS", "-R +/^[A-Z].*");
+ }
}
#ifdef _WIN32