tmux fast pane resizing hotkeys.

This commit is contained in:
cheetah 2012-08-03 10:09:02 +06:00
parent 977fe12ca2
commit 6026d3b1bd

View File

@ -74,4 +74,10 @@ set-window-option -g automatic-rename
set -g mode-mouse off
# color
set -g default-terminal "screen-256color"
set -g default-terminal "screen-256color"
# Pane resizing
bind-key J resize-pane -D 10
bind-key K resize-pane -U 10
bind-key H resize-pane -L 10
bind-key L resize-pane -R 10