Note: This site is currently "Under construction". I'm migrating to a new version of my site building software. Lots of things are in a state of disrepair as a result (for example, footnote links aren't working). It's all part of the process of building in public. Most things should still be readable though.

Resize tmux Window Panes On A Mac

TLDR

Uses these key sequences to resize tmux window panes on a mac:

Code

CTRL+b :resize-p -D 4
CTRL+b :resize-p -U 4
CTRL+b :resize-p -L 4
CTRL+b :resize-p -R 4

### Details

The `CTRL+b ARROW` (aka `

- First hit CTRL+b - Then hit `:` to move to the command line - Use `resize-p` to change the window pane size with the direction and the amount. For example:

:resize-p -D 4

The `-D` stands for down and the "4" is the amount. The other directions are `-U` for up, `-L` for left, and `-R` for right.

via: https://superuser.com/a/863397/85635