tmux : create new windows in the same dir.

This commit is contained in:
Dmitry Voronin 2023-11-08 02:59:01 +03:00
parent 937fb11d99
commit 1d339871e7

View file

@ -25,8 +25,8 @@ bind -n M-s select-pane -D
bind -n M-c kill-pane bind -n M-c kill-pane
# create new window. # create new window.
bind -n M-Escape new-window bind -n M-Escape new-window -c "#{pane_current_path}"
bind -n M-t new-window # NOTE: for compatibility with Termux as it does not support <C-Esc> yet. bind -n M-t new-window -c "#{pane_current_path}" # NOTE: for compatibility with Termux as it does not support <C-Esc> yet.
# close window. # close window.
bind -n M-x kill-window bind -n M-x kill-window