tmux: Allow C-h to still be passed

Some programs (e.g. the UEFI shell) expect it for backspace.
This commit is contained in:
2022-06-24 16:50:57 +02:00
parent d5fdfd37e9
commit b4e0d4111b

View File

@@ -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-<arrow>
bind -n M-S-Left resize-pane -L
bind -n M-S-Up resize-pane -D