From 5537ef0fdb41a917b803a717b22242da7c96323d Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 12 Jul 2022 11:06:45 +0100 Subject: [PATCH] refactor(tmux): change split key bindings --- roles/tmux/files/.tmux.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/tmux/files/.tmux.conf b/roles/tmux/files/.tmux.conf index 88a22e6..fa5f01e 100644 --- a/roles/tmux/files/.tmux.conf +++ b/roles/tmux/files/.tmux.conf @@ -14,8 +14,8 @@ set-option -g status-keys "emacs" set-option -g default-terminal "xterm-256color" set-option -ga terminal-overrides ",*256col*:Tc" -bind-key - split-window -v -c '#{pane_current_path}' -bind-key \\ split-window -h -c '#{pane_current_path}' +bind-key h split-window -v -c '#{pane_current_path}' +bind-key v split-window -h -c '#{pane_current_path}' bind -n S-Left resize-pane -L 2 bind -n S-Right resize-pane -R 2