fix ctrl-\ key in ubuntu 20.04

This commit is contained in:
hophacker 2020-09-09 04:59:08 +08:00
parent f9ac27f31c
commit cec15dd216

View File

@ -33,7 +33,7 @@ bind -n C-Down if-shell "$is_vim" "send-keys C-j" "select-pane -D"
bind -n C-Up if-shell "$is_vim" "send-keys C-k" "select-pane -U"
bind -n C-Right if-shell "$is_vim" "send-keys C-l" "select-pane -R"
bind -n C-\ if-shell "$is_vim" "send-keys C-\\" "select-pane -l"
bind -n 'C-\' if-shell "$is_vim" 'send-keys C-\\' "select-pane -l"
# Use vi keybindings for tmux commandline input.
# Note that to get command mode you need to hit ESC twice...