Can anyone help me set up this configuration?
If I create a new pane, the new pane should start out in the same working directory as the pane I was just in. If I create a new window, the new window should start out in the home directory (or any other global default path).
Is this possible with tmux 1.8?
bind c new-window -c "$HOME"
would work, but new windows are still created in thepane_current_path
– cbcoutinho Mar 24 '18 at 23:09<prefix>"
you have to escape the double quote like this:bind '"' split-window -v -c "#{pane_current_path}"
. Hopefully saves someone some time. – jchook May 07 '20 at 00:07tmux source ~/.tmux.conf
– redOctober13 Aug 22 '23 at 19:03