From 38524da9790537d9a7e72968fda3e0a5ec07c8b3 Mon Sep 17 00:00:00 2001 From: Hunter Haugen Date: Tue, 28 Aug 2012 14:45:44 -0700 Subject: [PATCH] Add tmux \^a bindings and pane swapping --- .tmux.conf | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index aa801e7..a99bd04 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,9 +1,9 @@ ### screen-like keybindings -#unbind C-b -#set -g prefix C-a -#bind C-a last-window -#bind a send-prefix +unbind C-b +set -g prefix C-a +bind C-a last-window +bind a send-prefix #bind A command-prompt "rename-window %%" #bind Escape copy-mode @@ -25,6 +25,12 @@ bind l select-pane -R #bind Tab down-pane #bind BTab up-pane +# swapping +#bind Left swap-pane -L +bind Up swap-pane -U +bind Down swap-pane -D +#bind Right swap-pane -R + # Reload key bind r source-file ~/.tmux.conf