diff options
author | Christian Duerr <contact@christianduerr.com> | 2018-03-09 16:06:39 +0100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2018-03-13 14:52:14 -0700 |
commit | 5dbe6e58b91563d6b011d2be75d13a1e37bd9cac (patch) | |
tree | da00723a792ec19d565371650c293d636a78a565 /alacritty.yml | |
parent | fce67e6f3f8495f7ba029c55f2e319626cee56ca (diff) | |
download | alacritty-5dbe6e58b91563d6b011d2be75d13a1e37bd9cac.tar.gz alacritty-5dbe6e58b91563d6b011d2be75d13a1e37bd9cac.zip |
Make normal scrolling line amount configurable
It is now possible to configure the amount of lines the viewport should
scroll when using the normal scrolling mode.
This fixes #1160.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index fcc637c3..6e87ede3 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -219,6 +219,12 @@ mouse: # To disable this completely, set `faux_scrollback_lines` to 0. faux_scrollback_lines: 1 + # Normal Scrolling + # + # Number of lines the viewport will move when scrolling in + # the terminal with scrollback enabled (>0). + normal_scrolling_lines: 300 + selection: semantic_escape_chars: ",│`|:\"' ()[]{}<>" |