From c2cf4166456d948911ee7dce70f2ddf6f4cae6af Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 1 Jun 2011 22:35:04 +0200 Subject: [PATCH] tmux.conf: Add more bindings to behave similar to GNU screen. --- tmux.conf | 8 ++++++++ 1 file changed, 8 insertions(+) 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 -- 2.44.1