]> git.phdru.name Git - dotfiles.git/commitdiff
.tmux.conf: add select-window bindings
authorOleg Broytman <phd@phdru.name>
Thu, 13 Apr 2017 22:37:53 +0000 (01:37 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 13 Apr 2017 22:37:53 +0000 (01:37 +0300)
.tmux.conf

index fe4827c77e837727bd7676b296834639fb2b260c..9d13711c964da6490f493380648fe8aa487386f0 100644 (file)
@@ -56,6 +56,16 @@ set-option -g status-right ''
 # Increase scrollback lines
 set-option -g history-limit 1000
 
+# Set the command prefix to match GNU screen (CTRL+a)
+# set-option -g prefix C-a
+#
+# Use C-a C-a key to send prefix instead of the default
+# unbind-key C-b
+# bind-key C-a send-prefix
+#
+# <prefix> C-a for last-window
+# bind-key C-a last-window
+
 # <prefix> R to reload config without restart
 bind-key R source-file ~/.tmux.conf \; display "Reloaded!"
 
@@ -70,15 +80,8 @@ bind J resize-pane -D 10
 bind K resize-pane -U 10
 bind L resize-pane -R 10
 
-# Set the command prefix to match GNU screen (CTRL+a)
-# set-option -g prefix C-a
-#
-# Use C-a C-a key to send prefix instead of the default
-# unbind-key C-b
-# bind-key C-a send-prefix
-#
-# <prefix> C-a for last-window
-# bind-key C-a last-window
+bind -r C-h select-window -t :-
+bind -r C-l select-window -t :+
 
 # Use vertical and horizontal chars to split the screen
 bind-key | split-window -h