New tmux windows open to the current panes dir

This commit is contained in:
Daniel Weber 2024-07-24 08:10:00 -04:00
parent 95d2a4ee96
commit 3ab35d8931

View File

@ -19,6 +19,10 @@ bind j select-pane -D
bind k select-pane -U bind k select-pane -U
bind l select-pane -R bind l select-pane -R
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"
bind-key -r -T prefix C-k resize-pane -U 5 bind-key -r -T prefix C-k resize-pane -U 5
bind-key -r -T prefix C-j resize-pane -D 5 bind-key -r -T prefix C-j resize-pane -D 5
bind-key -r -T prefix C-h resize-pane -L 5 bind-key -r -T prefix C-h resize-pane -L 5