From 3eada75203a7f769dbe7319acd653e95881b3e3b Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Fri, 5 Sep 2025 08:02:45 -0400 Subject: [PATCH] New window in tmux opens in current pane --- home/.tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/.tmux.conf b/home/.tmux.conf index aac6b8b..ac74259 100644 --- a/home/.tmux.conf +++ b/home/.tmux.conf @@ -18,6 +18,9 @@ bind - split-window -v -c "#{pane_current_path}" unbind '"' unbind % +# New windows open in current directory +bind c new-window -c "#{pane_current_path}" + # reload config file (change file location to your the tmux.conf you want to use) bind r source-file ~/.tmux.conf