Will man bei tmux ein neues Fenster oder ein neues vertikales oder horizontales Pane im aktuellen Verzeichnis öffnen so muss man in der Konfiguration ~/.tmux.conf folgende Werte eintragen
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -h -c "#{pane_current_path}"
bind % split-window -v -c "#{pane_current_path}"
In einer laufenden tmux Session kann man die neue Konfiguration neu einlesen mit
tmux source-file ~/.tmux.conf