aboutsummaryrefslogtreecommitdiff
path: root/tmux
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-10-02 13:43:12 +1300
committerTom Ryder <tom@sanctum.geek.nz>2012-10-02 13:43:12 +1300
commit1e74498f038da3c16bcc6ed0e63b17dbbdd6f39b (patch)
tree6cd4d0d1628165b8e37631871d6af3f5baf37e09 /tmux
parentTidy after scripts, add one for Gundo (diff)
downloaddotfiles-1e74498f038da3c16bcc6ed0e63b17dbbdd6f39b.tar.gz
dotfiles-1e74498f038da3c16bcc6ed0e63b17dbbdd6f39b.zip
Allow repeats for next/prev tmux window
Diffstat (limited to 'tmux')
-rw-r--r--tmux/tmux.conf4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf
index 6d8caebc..7bb72dd8 100644
--- a/tmux/tmux.conf
+++ b/tmux/tmux.conf
@@ -17,6 +17,10 @@ bind-key -r '-' resize-pane -D 5
bind-key -r '<' resize-pane -L 5
bind-key -r '>' resize-pane -R 5
+# Allow repeats for next/prev window
+bind-key -r n next-window
+bind-key -r p previous-window
+
# Vim-like select/yank
bind-key -t vi-copy 'v' begin-selection
bind-key -t vi-copy 'y' copy-selection