Add quick pane resize in tmux

This commit is contained in:
Tanguy Herbron 2021-04-26 17:31:14 +02:00
parent e5c42215e1
commit e35bbe4b13

View File

@ -74,6 +74,12 @@ bind-key W command-prompt -p "Name of new window: " "new-window -n '%%'"
bind-key S command-prompt -p "Name of new session: " "new-session -s '%%'"
# Quick pane resizing using arrow keys
bind-key -r H resize-pane -L 5
bind-key -r J resize-pane -D 5
bind-key -r K resize-pane -U 5
bind-key -r L resize-pane -R 5
# reload config
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."