From 780ea535f741039793345cb913315068eede9bbe Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Thu, 26 Jan 2023 14:07:30 +0530 Subject: [PATCH] alacritty: Do not bind PasteSelection It is confusing to have both and remember what is active when. Just use the damn clipboard. --- alacritty/.config/alacritty/alacritty.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index 6a1915d..c4f7a28 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -219,8 +219,7 @@ colors: # - AppKeypad # key_bindings: - - { key: V, mods: Control|Alt, action: Paste } - - { key: V, mods: Control|Shift, action: PasteSelection } + - { key: V, mods: Control|Shift, action: Paste } - { key: C, mods: Control|Shift, action: Copy } - { key: Q, mods: Control, action: Quit } - { key: PageUp, mods: Shift, action: ScrollPageUp }