Flaviu's Blog - Read'n'Code

Pair Programming With Tmux Screencast

Notes/Links:

Tmux Home

Man Page

Screencast by Peter Cooper

Tmux Rant y Bryan Liles

Funny, the changelog episode this week also covered tmux. So, check it out.

My ~/.tmux.conf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# use vi mode
setw -g mode-keys vi

# remap prefix to Control + a
set -g prefix C-a
unbind C-b
bind C-a send-prefix

# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf

# quick pane cycling with Ctrl-a
unbind ^A
bind ^A select-pane -t :.+

# move around panes like in vim (only in tmux 1.6)
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind h select-pane -L

# Sane scrolling
set -g mode-mouse on

Also, note that Ctrl-A D will let you view and detach other clients. :)

Comments

Fork Flaviu on GitHub