Created
January 16, 2014 10:14
-
-
Save rummelonp/8452595 to your computer and use it in GitHub Desktop.
tmux で alt+数字でレイアウト変更、alt+矢印キーでペインのサイズ変更するやつ
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
# pane layout | |
bind-key -n M-1 select-layout main-horizontal | |
bind-key -n M-2 select-layout main-vertical | |
bind-key -n M-3 select-layout tiled | |
bind-key -n M-4 select-layout even-horizontal | |
bind-key -n M-5 select-layout even-vertical | |
# pane size | |
bind-key -n M-Up resize-pane -U 5 | |
bind-key -n M-Down resize-pane -D 5 | |
bind-key -n M-Left resize-pane -L 5 | |
bind-key -n M-Right resize-pane -R 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment