From 86e2687bca6baf7b219de4383296c6dee0f8ab95 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Thu, 1 Aug 2024 23:21:37 +0200 Subject: [PATCH] tmux: add bindings to split window in full width/height --- config/tmux/tmux.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 80e9f78..3afa224 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -14,7 +14,9 @@ bind C command-prompt -p 'Save pane history:' \ # Window/pane management (new windows/panes use the path in current pane) bind c new-window -c '#{pane_current_path}' bind | split-window -h -c '#{pane_current_path}' +bind \\ split-window -h -c '#{pane_current_path}' -f bind - split-window -v -c '#{pane_current_path}' +bind _ split-window -v -c '#{pane_current_path}' -f bind x kill-pane bind X kill-window bind W command-prompt 'rename-window %%'