diff options
author | Jason Heard <jasonh@pandell.com> | 2021-07-29 09:40:51 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 15:40:51 +0000 |
commit | 3c309a0953566fe6f726b84eb117fd9cfa42df3d (patch) | |
tree | d6f4c6200bc4f9a6abb192adeee5bb15b4603815 /alacritty.yml | |
parent | 96a098c358870e8be41921f19ed72810651106ae (diff) | |
download | alacritty-3c309a0953566fe6f726b84eb117fd9cfa42df3d.tar.gz alacritty-3c309a0953566fe6f726b84eb117fd9cfa42df3d.zip |
Add ExpandSelection mouse binding action
Fixes #4132.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/alacritty.yml b/alacritty.yml index a7628203..e93f3f74 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -507,13 +507,19 @@ # - Right # - Numeric identifier such as `5` # -# - `action` (see key bindings) +# - `action` (see key bindings for actions not exclusive to mouse mode) +# +# - Mouse exclusive actions: +# +# - ExpandSelection +# Expand the selection to the current mouse cursor location. # # And optionally: # # - `mods` (see key bindings) #mouse_bindings: -# - { mouse: Middle, action: PasteSelection } +# - { mouse: Right, action: ExpandSelection } +# - { mouse: Middle, mode: ~Vi, action: PasteSelection } # Key bindings # |