Skip to content

Instantly share code, notes, and snippets.

@azye
Last active February 19, 2022 09:02
Show Gist options
  • Save azye/086cd50a5588113597441977649ed9d7 to your computer and use it in GitHub Desktop.
Save azye/086cd50a5588113597441977649ed9d7 to your computer and use it in GitHub Desktop.
TMUX
## Resize Panes
bind-key -r -T prefix M-Up resize-pane -U 5
bind-key -r -T prefix M-Down resize-pane -D 5
bind-key -r -T prefix M-Left resize-pane -L 5
bind-key -r -T prefix M-Right resize-pane -R 5
bind-key -r -T prefix C-Up resize-pane -U
bind-key -r -T prefix C-Down resize-pane -D
bind-key -r -T prefix C-Left resize-pane -L
bind-key -r -T prefix C-Right resize-pane -R
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment