From 75611be2f8456f0155199d679036ce3a2cc2f4b0 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Fri, 24 Jun 2022 23:48:30 +0200 Subject: [PATCH] tmux: Use short command variants Use short variants of commands and get rid of redundant `-T prefix` flag to `bind`. --- .config/tmux/tmux.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 216cb73..5a1fa38 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -27,16 +27,16 @@ bind C-a send-prefix # Split panes with > and < unbind % -bind < split-window -v -c "#{pane_current_path}" +bind < splitw -v -c "#{pane_current_path}" unbind '"' -bind > split-window -h -c "#{pane_current_path}" +bind > splitw -h -c "#{pane_current_path}" # Create new window in current path -bind c new-window -c "#{pane_current_path}" +bind c neww -c "#{pane_current_path}" # Resource config bind R source-file "$XDG_CONFIG_HOME/tmux/tmux.conf" \; \ - display-message "Sourced $XDG_CONFIG_HOME/tmux/tmux.conf" + display "Sourced $XDG_CONFIG_HOME/tmux/tmux.conf" # Fullscreen pane (toggle) bind F resizep -Z