From 9797bd72bca6ee496561714dc1cda4071bebf045 Mon Sep 17 00:00:00 2001 From: Christian Dürr Date: Mon, 25 Dec 2017 22:15:41 +0100 Subject: Allow faux scroll amount configuration It is now possible to configure the amount of lines scrolled with faux scrollback. --- alacritty.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'alacritty.yml') 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: ",│`|:\"' ()[]{}<>" -- cgit v1.2.3-54-g00ecf