From 33e2f0f81b5c649d3c5eb89611a96565f9b5b3e5 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Sun, 29 Dec 2019 19:58:32 +0000 Subject: [PATCH] Fix unescaped backslash in binding config --- tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux.conf b/tmux.conf index 522fb2f..c584c46 100644 --- a/tmux.conf +++ b/tmux.conf @@ -67,7 +67,7 @@ bind -n C-h if $in_vim 'send-keys C-h' 'select-pane -L' bind -n C-j if $in_vim 'send-keys C-j' 'select-pane -D' bind -n C-k if $in_vim 'send-keys C-k' 'select-pane -U' bind -n C-l if $in_vim 'send-keys C-l' 'select-pane -R' -bind -n C-\ if $in_vim 'send-keys C-\\' 'select-pane -l' +bind -n C-\\ if $in_vim 'send-keys C-\\' 'select-pane -l' # Integrate urlscan or fallback to urlview if -b 'which urlscan' \