From f27da7e53587503190e8f0ebb3f4b507e7c49139 Mon Sep 17 00:00:00 2001 From: Benie Date: Sun, 29 Dec 2019 19:56:11 +0000 Subject: [PATCH] Fix unescaped backslash in 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' \