Added prefix ^A binding to cycle tmux panes

This commit is contained in:
Nick Nisi
2012-06-16 08:45:48 -05:00
parent 35769e8dd0
commit b02676a94e

View File

@@ -9,6 +9,11 @@ bind C-a send-prefix
# make delay shorter
set -sg escape-time 0
# cycle through panes
unbind ^A
unbind o # this is the default key for cycling panes
bind ^A select-pane -t:.+
# make window/pane index start with 1
set -g base-index 1
setw -g pane-base-index 1