From d85dd894166ab834c86f696a1ea7fd71cdf5f73e Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Mon, 5 Jun 2023 13:00:38 +0200 Subject: [PATCH] tmux: Make selfinsert binding `C-v` repeatable --- .config/tmux/tmux.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 069158c..5cac9ab 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -135,7 +135,8 @@ bind r switchc -T resize # Make it possible to send keys that are bound in the root key table. (C-h for # example is sometimes needed as backspace sequence) -bind C-v command-prompt -k -p (selfinsert) { send "%%" } +# TODO: Make repeatable without C-v +bind -r C-v command-prompt -k -p (selfinsert) { send "%%" } # Synchronize the panes in the current window with `S` bind S set -w synchronize-panes