Resize Tmux Pane 🖥
Sometimes, after a long day of coding, I resize a Tmux pane using my mouse instead of my keyboard. It's a habit from my GUI-informed past.
Here's how to accomplish this without a mouse.
To resize the focused pane left one cell (from the Tmux prompt):
:resize-pane -L
Resize pane number 3 right 10 cells:
:resize-pane -t 3 -R 10
Etc.
Tweet