diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-01-11 00:56:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 00:56:49 +0300 |
commit | 5e39ea9f9fd7bef45b52451ad90bb48e8099721b (patch) | |
tree | a0b731f8b5bd4cc0aebb4c513e27d39282580ff5 /alacritty.yml | |
parent | ed35d033aeae0fa054756dac7f91ea8527203a4e (diff) | |
download | alacritty-5e39ea9f9fd7bef45b52451ad90bb48e8099721b.tar.gz alacritty-5e39ea9f9fd7bef45b52451ad90bb48e8099721b.zip |
Fix block selection expansion with Ctrl + RMB
When 'ExpandSelection' binding was added only default binding for
RightClick was added, however to expand block selection holding control
when doing a click is required, so this commit adds a binding for
'RMB + Control'.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/alacritty.yml b/alacritty.yml index 09abce3c..00c16ce3 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -528,8 +528,9 @@ # # - `mods` (see key bindings) #mouse_bindings: -# - { mouse: Right, action: ExpandSelection } -# - { mouse: Middle, mode: ~Vi, action: PasteSelection } +# - { mouse: Right, action: ExpandSelection } +# - { mouse: Right, mods: Control, action: ExpandSelection } +# - { mouse: Middle, mode: ~Vi, action: PasteSelection } # Key bindings # |