diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-11-13 05:40:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-13 08:40:09 +0300 |
commit | 9a7844987693909925b8663d8aa905231d291410 (patch) | |
tree | e99b99bcbd0fc40aa1938fc203357321ec024777 /alacritty.yml | |
parent | b6d94e7b13eb9a14edea843a79c6d86b5b6d8803 (diff) | |
download | alacritty-9a7844987693909925b8663d8aa905231d291410.tar.gz alacritty-9a7844987693909925b8663d8aa905231d291410.zip |
Add ability to select text during search
This removes the restriction of not being able to select text while the
search is active, making it a bit less jarring of a UX when the user
tries to interact with the terminal during search.
Since the selection was used during vi-less search to highlight the
focused match, there is now an option for a focused match color, which
uses the inverted normal match color by default. This focused match is
used for both search modes.
Other mouse interactions are now also possible during search, like
opening URLs or clicking inside of mouse mode applications.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index 7795136d..2c96d23e 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -227,6 +227,9 @@ #matches: # foreground: '#000000' # background: '#ffffff' + #focused_match: + # foreground: CellBackground + # background: CellForeground #bar: # background: '#c5c8c6' |