Skip to content

Commit

Permalink
Pane resizing and switching
Browse files Browse the repository at this point in the history
  • Loading branch information
gf3 committed Mar 18, 2013
1 parent 4fc8e35 commit 0fcadae
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .tmux.conf
Expand Up @@ -45,6 +45,18 @@ unbind '"'
bind - split-window -v
bind v split-window -v

# Moving between panes
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R

# Pane resizing
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5

# Terminal emulator window title
set -g set-titles on
set -g set-titles-string '#S:#I.#P #W'
Expand Down

0 comments on commit 0fcadae

Please sign in to comment.