From 48acd729fedfda1dd27726dc576011c89aa551f8 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Thu, 21 Mar 2024 15:57:20 +0100 Subject: [PATCH] tmux: Do not enter copy-mode with Escape I rarely use this binding as by now I have the muscle memory of `[` to enter copy-mode and since my brain thinks that I can press Escape if I accidentally press the prefix and I get disappointed every time. --- .config/tmux/tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index f504d15..761d272 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -110,7 +110,7 @@ bind -n M-0 select-window -T -t 10 # Vim-bindings # Enter copy-mode with Escape -bind Escape copy-mode +# bind Escape copy-mode # Start selection (i.e. visual mode) with `v`, and rectangle selection (i.e. # visual block mode) with `C-v`