From b4e0d4111bf7723e27e16cbfd938a4a6c19fcc4b Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Fri, 24 Jun 2022 16:50:57 +0200 Subject: [PATCH] tmux: Allow `C-h` to still be passed Some programs (e.g. the UEFI shell) expect it for backspace. --- .config/tmux/tmux.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 17a8636..7842429 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -78,6 +78,11 @@ bind -n M-J resize-pane -D bind -n M-K resize-pane -U bind -n M-L resize-pane -R +# Allow C-h to still be passed (when programs expect it as backspace, e.g. UEFI +# shell) +bind -r -T selfinsert C-h send-keys C-h +bind C-v switch-client -T selfinsert + # Resize panes with Alt-Shift- bind -n M-S-Left resize-pane -L bind -n M-S-Up resize-pane -D