aboutsummaryrefslogtreecommitdiffstats
path: root/.tmux.conf
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2015-04-03 23:47:52 +0200
committerDavid Runge <dave@sleepmap.de>2015-04-03 23:47:52 +0200
commit5094f094bc09bc0add959a19bebb53db5466cfd7 (patch)
tree2b28d55f60b0329a8e72637b427e0bd3545c129d /.tmux.conf
parent5cd9777db087717cf1d2b286187301e9822c4c23 (diff)
downloaddotfiles-5094f094bc09bc0add959a19bebb53db5466cfd7.tar.gz
dotfiles-5094f094bc09bc0add959a19bebb53db5466cfd7.tar.bz2
dotfiles-5094f094bc09bc0add959a19bebb53db5466cfd7.tar.xz
dotfiles-5094f094bc09bc0add959a19bebb53db5466cfd7.zip
.tmux.conf: Fixing resize support. Clarifying comment.
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf11
1 files changed, 5 insertions, 6 deletions
diff --git a/.tmux.conf b/.tmux.conf
index 4a87909..a5872c3 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -16,12 +16,11 @@ bind l select-pane -R
bind-key v split-window -h
bind-key s split-window
-# Pane resize in all four directions using vi bindings.
-# Can use these raw but I map them to shift-ctrl-<h,j,k,l> in iTerm.
-bind-key J resize-pane -D
-bind-key K resize-pane -U
-bind-key H resize-pane -L
-bind-key L resize-pane -R
+# Pane resize in all four directions using HJKL
+bind-key -r H resize-pane -L
+bind-key -r J resize-pane -D
+bind-key -r K resize-pane -U
+bind-key -r L resize-pane -R
# Fix ctrl + L/R
bind-key -n C-Right send-keys w
bind-key -n C-Left send-keys b