From b5c7ff5a6983b951fe546be0ec79a76e52bf174b Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 21 Mar 2016 10:16:54 +0000 Subject: [PATCH] dot/tmux.conf: Order roughly by key. Organization: Straylight/Edgeware From: Mark Wooding --- dot/tmux.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dot/tmux.conf b/dot/tmux.conf index 06aaff3..7dcdb16 100644 --- a/dot/tmux.conf +++ b/dot/tmux.conf @@ -11,11 +11,11 @@ set -ga terminal-overrides ",xterm*:XT,screen*:XT" ## Sane key-bindings. I'm used to screen. Bite me. set -g prefix C-z -bind z send C-z -bind C-z last-window -bind c new-window -bind C-c new-window bind Tab select-pane -t.+1 bind M-Tab select-pane -t.-1 +bind C-c new-window bind Q break-pane bind S split-window +bind c new-window +bind z send C-z +bind C-z last-window -- [mdw]