diff options
author | David Runge <dave@sleepmap.de> | 2015-04-03 23:47:52 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-04-03 23:47:52 +0200 |
commit | 5094f094bc09bc0add959a19bebb53db5466cfd7 (patch) | |
tree | 2b28d55f60b0329a8e72637b427e0bd3545c129d | |
parent | 5cd9777db087717cf1d2b286187301e9822c4c23 (diff) | |
download | dotfiles-5094f094bc09bc0add959a19bebb53db5466cfd7.tar.gz dotfiles-5094f094bc09bc0add959a19bebb53db5466cfd7.tar.bz2 dotfiles-5094f094bc09bc0add959a19bebb53db5466cfd7.tar.xz dotfiles-5094f094bc09bc0add959a19bebb53db5466cfd7.zip |
.tmux.conf: Fixing resize support. Clarifying comment.
-rw-r--r-- | .tmux.conf | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -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 |