From: Simon Ruderich Date: Wed, 1 Jun 2011 20:35:04 +0000 (+0200) Subject: tmux.conf: Add more bindings to behave similar to GNU screen. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=c2cf4166456d948911ee7dce70f2ddf6f4cae6af;p=config%2Fdotfiles.git tmux.conf: Add more bindings to behave similar to GNU screen. --- diff --git a/tmux.conf b/tmux.conf index 2f1fe10..95689f6 100644 --- a/tmux.conf +++ b/tmux.conf @@ -7,4 +7,12 @@ set-option -g prefix C-a bind-key a send-prefix unbind-key C-b +# Switch to last window, like in GNU screen. +bind-key C-a last-window +# Switch to next/previos window, like in GNU screen. +bind-key C-n next-window +bind-key C-p previous-window +# Insert paste buffer, like in GNU screen. +bind-key C-] paste-buffer + # vim: ft=tmux