diff options
author | Christian Duerr <contact@christianduerr.com> | 2018-03-23 01:01:55 +0100 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2018-06-02 09:56:50 -0700 |
commit | 688cabefc0bfc3224189c10235668eae5e5b0101 (patch) | |
tree | 7579612ed4a2d22e897918f6f678bce272745109 /alacritty_macos.yml | |
parent | 4333b2fb1992b8185dc7041d9d3df8eee86717bc (diff) | |
download | alacritty-688cabefc0bfc3224189c10235668eae5e5b0101.tar.gz alacritty-688cabefc0bfc3224189c10235668eae5e5b0101.zip |
Rework auto-scrolling options
This changes two things, the first thing it does is that now whenever a
keybinding sends an escape sequence, the viewport is automatically
scrolled to the bottom.
This is enabled by default and fixes #1187.
The second thing is automatic scrolling when a command writes to the
terminal. So when running a command like `sleep 3; ls -lah`, alacritty
will scroll to the bottom once the output is sent, even if the viewport
is currently not at the bottom of the scrollback.
Because this can have an impact on performance, and is not enabled by
default in terminals like iTerm or Termite (VTE), it is an opt-in
setting in the config.
Diffstat (limited to 'alacritty_macos.yml')
-rw-r--r-- | alacritty_macos.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/alacritty_macos.yml b/alacritty_macos.yml index 8f8c4703..9b7b8d1a 100644 --- a/alacritty_macos.yml +++ b/alacritty_macos.yml @@ -50,6 +50,10 @@ scrolling: # To disable this completely, set `faux_multiplier` to 0. faux_multiplier: 3 + # Automatically scroll to the bottom when new text is written + # to the terminal. + auto_scroll: false + # Display tabs using this many cells (changes require restart) tabspaces: 8 |