From 8d4c10dad65a2a26c5801448ed82ed8ebef6850a Mon Sep 17 00:00:00 2001 From: Zetok Zalbavar Date: Mon, 27 Mar 2017 11:01:50 +0100 Subject: [PATCH] Remap `Copy` and `Paste` to use `Shift + Control` instead of `Command` Closes #307. --- alacritty.yml | 4 ++-- 1 file 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 }