1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-11 13:51:01 -05:00

Remap Copy and Paste to use Shift + Control instead of Command

Closes #307.
This commit is contained in:
Zetok Zalbavar 2017-03-27 11:01:50 +01:00 committed by Joe Wilm
parent 715d4f8be8
commit 8d4c10dad6

View file

@ -163,8 +163,8 @@ visual_bell:
# (e.g. "\x1b[5~") is? Open another terminal (like xterm) without tmux,
# then run `showkey -a` to get the sequence associated to a key combination.
key_bindings:
- { key: V, mods: Command, action: Paste }
- { key: C, mods: Command, action: Copy }
- { key: V, mods: Control|Shift, action: Paste }
- { key: C, mods: Control|Shift, action: Copy }
- { key: Q, mods: Command, action: Quit }
- { key: W, mods: Command, action: Quit }
- { key: Home, chars: "\x1bOH", mode: AppCursor }