]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
tmux.conf: Add more screen-like bindings.
authorSimon Ruderich <simon@ruderich.org>
Thu, 2 Jun 2011 19:12:14 +0000 (21:12 +0200)
committerSimon Ruderich <simon@ruderich.org>
Thu, 2 Jun 2011 19:12:14 +0000 (21:12 +0200)
tmux.conf

index 95689f6efd562d0706012293c7fffa933a20bbd4..741f0b6201f92c8b3614c17c07b63ea0276dd67f 100644 (file)
--- a/tmux.conf
+++ b/tmux.conf
@@ -7,12 +7,13 @@ set-option -g prefix C-a
 bind-key a send-prefix
 unbind-key C-b
 
-# Switch to last window, like in GNU screen.
+# GNU screen like bindings (with C-x).
+bind-key C-c new-window
 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-[ copy-mode
 bind-key C-] paste-buffer
 
 # vim: ft=tmux