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:
parent
715d4f8be8
commit
8d4c10dad6
1 changed files with 2 additions and 2 deletions
|
@ -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 }
|
||||
|
|
Loading…
Reference in a new issue