Created
July 11, 2014 09:53
-
-
Save ballistyx/5e324a9c4e55c40365a9 to your computer and use it in GitHub Desktop.
pane resizeing on tmux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# resize pane | |
# prefix key is Ctrl+t | |
# usage: Ctrl+t Alt+Up(↑) | |
bind-key -r M-Up resize-pane -U 5 | |
bind-key -r M-Down resize-pane -D 5 | |
bind-key -r M-Left resize-pane -L 20 | |
bind-key -r M-Right resize-pane -R 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment