From b02676a94e0bde10afad418be6f90b28a74cc0d0 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Sat, 16 Jun 2012 08:45:48 -0500 Subject: [PATCH] Added prefix ^A binding to cycle tmux panes --- tmux/tmux.conf.symlink | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tmux/tmux.conf.symlink b/tmux/tmux.conf.symlink index f846d03..3486e70 100644 --- a/tmux/tmux.conf.symlink +++ b/tmux/tmux.conf.symlink @@ -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