diff options
author | Zetok Zalbavar <zetok@openmailbox.org> | 2017-03-27 11:01:50 +0100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-03-27 09:09:47 -0700 |
commit | 8d4c10dad65a2a26c5801448ed82ed8ebef6850a (patch) | |
tree | 46d02374fb530d21a68c3dced5410aa350d387b6 /alacritty.yml | |
parent | 715d4f8be8b80604a0b6a8464e55a60660f810a0 (diff) | |
download | alacritty-8d4c10dad65a2a26c5801448ed82ed8ebef6850a.tar.gz alacritty-8d4c10dad65a2a26c5801448ed82ed8ebef6850a.zip |
Remap `Copy` and `Paste` to use `Shift + Control` instead of `Command`
Closes #307.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty.yml b/alacritty.yml index 8cce9775..b4ae3fda 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -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 } |