diff options
author | Christian Dürr <contact@christianduerr.com> | 2017-12-25 22:15:41 +0100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2018-01-02 08:24:03 -0800 |
commit | 9797bd72bca6ee496561714dc1cda4071bebf045 (patch) | |
tree | 8d8dece9b8223120873bceff8380f0dc52653427 /alacritty.yml | |
parent | aa1f31785e754107fab154002abf9bc0b129aad1 (diff) | |
download | alacritty-9797bd72bca6ee496561714dc1cda4071bebf045.tar.gz alacritty-9797bd72bca6ee496561714dc1cda4071bebf045.zip |
Allow faux scroll amount configuration
It is now possible to configure the amount of lines
scrolled with faux scrollback.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index bf9451c7..0901b7fe 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -197,9 +197,21 @@ background_opacity: 1.0 mouse_bindings: - { mouse: Middle, action: PasteSelection } +# Mouse settings +# +# The `faux_scrollback_lines` setting controls the number +# of lines the terminal should scroll when the alternate +# screen buffer is active. This is used to allow mouse +# scrolling for applications like `man`. +# To disable this completely, set `faux_scrollback_lines` to 0. +# +# The `double_click` and `triple_click` settings control the time +# alacritty should wait for accepting multiple clicks as one double +# or triple click. mouse: double_click: { threshold: 300 } triple_click: { threshold: 300 } + faux_scrollback_lines: 1 selection: semantic_escape_chars: ",│`|:\"' ()[]{}<>" |