alacritty: Fix key binding for Paste
We require Ctrl-v for visual selection in neovim, so use a different key binding for this.
This commit is contained in:
parent
da93717582
commit
6907fff2e2
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ background_opacity: 0.8
|
||||||
# - AppKeypad
|
# - AppKeypad
|
||||||
#
|
#
|
||||||
key_bindings:
|
key_bindings:
|
||||||
- { key: V, mods: Control, action: Paste }
|
- { key: V, mods: Control|Alt, action: Paste }
|
||||||
- { key: V, mods: Control|Shift, action: PasteSelection }
|
- { key: V, mods: Control|Shift, action: PasteSelection }
|
||||||
- { key: C, mods: Control|Shift, action: Copy }
|
- { key: C, mods: Control|Shift, action: Copy }
|
||||||
- { key: Q, mods: Control, action: Quit }
|
- { key: Q, mods: Control, action: Quit }
|
||||||
|
|
Loading…
Reference in a new issue