From cec15dd2164d9e40b4d60ba3a877bd2d376578eb Mon Sep 17 00:00:00 2001 From: hophacker Date: Wed, 9 Sep 2020 04:59:08 +0800 Subject: [PATCH] fix ctrl-\ key in ubuntu 20.04 --- tmux/tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 592cbbc..226ff80 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -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...