From bc0903191de3f4040bc01c162f9de1f24482a56f Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Mon, 30 Nov 2015 17:39:46 +0100 Subject: [PATCH] Change the scroll_on_output default to false --- doc/terminator_config.5 | 2 +- terminatorlib/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/terminator_config.5 b/doc/terminator_config.5 index a1fca6eb..0dda2e9b 100644 --- a/doc/terminator_config.5 +++ b/doc/terminator_config.5 @@ -452,7 +452,7 @@ Default value: \fBTrue\fR .TP .B scroll_on_keystroke \fR(boolean) If true, pressing a key jumps the scrollbar to the bottom. -Default value: \fBTrue\fR +Default value: \fBFalse\fR .TP .B scroll_on_output \fR(boolean) If true, whenever there's new output the terminal will scroll to the bottom. diff --git a/terminatorlib/config.py b/terminatorlib/config.py index 47355d86..21ff3124 100755 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -225,7 +225,7 @@ DEFAULTS = { 'scrollbar_position' : "right", 'scroll_background' : True, 'scroll_on_keystroke' : True, - 'scroll_on_output' : True, + 'scroll_on_output' : False, 'scrollback_lines' : 500, 'scrollback_infinite' : False, 'exit_action' : 'close',