JayVii

@hendrikm @landesfeind FYI, you can configure tmux in a way that it will "carry the current working directory" to new panes or splits. For example, putting following in your tmux configuration will create a horizontal (Ctrl+h) or vertical (Ctrl+v) split of your current window and carry the same working directory into the new split:

bind -n C-h split-window -v -c '#{pane_current_path}'
bind -n C-v split-window -h -c '#{pane_current_path}'