diff options
author | Christian Duerr <contact@christianduerr.com> | 2017-12-29 18:37:46 +0100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2018-01-02 08:24:03 -0800 |
commit | b01dc062c704ae3163ca6272dab5d4ec193430a6 (patch) | |
tree | a19aa6586dd5fd364be51c57192030703b1b42bc /alacritty_macos.yml | |
parent | 9797bd72bca6ee496561714dc1cda4071bebf045 (diff) | |
download | alacritty-b01dc062c704ae3163ca6272dab5d4ec193430a6.tar.gz alacritty-b01dc062c704ae3163ca6272dab5d4ec193430a6.zip |
Address feedback
The config documentation has been changed to make it clear which part of
the documentation is related to which setting.
The faux scrollback part of the `scroll_terminal` method has been
cleaned up by making use of the fact that the `codepoint + 1` can be
used in the escape sequence which is used for scrolling.
Diffstat (limited to 'alacritty_macos.yml')
-rw-r--r-- | alacritty_macos.yml | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/alacritty_macos.yml b/alacritty_macos.yml index 4b44b3f4..aaa38d21 100644 --- a/alacritty_macos.yml +++ b/alacritty_macos.yml @@ -178,20 +178,23 @@ 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: + # Click settings + # + # The `double_click` and `triple_click` settings control the time + # alacritty should wait for accepting multiple clicks as one double + # or triple click. double_click: { threshold: 300 } triple_click: { threshold: 300 } + + # Faux Scrollback + # + # 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. faux_scrollback_lines: 1 selection: |