dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit d5f0d0f8580d8ed440425e2ebfae3480b444fdf4
parent 035d7f1c1e61f4b3f153e63b04c19413e371a0cc
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Wed, 12 Sep 2018 09:24:54 +0200

Do not repeat prefix movement commands

Diffstat:
Mlinks/.tmux.conf | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/links/.tmux.conf b/links/.tmux.conf @@ -58,10 +58,10 @@ set -g status-right-length 40 #### NAVIGATION # With C-a prefix -bind -r h select-pane -L # navigate left with <C-a>h -bind -r j select-pane -D # navigate down with <C-a>j -bind -r k select-pane -U # navigate up with <C-a>k -bind -r l select-pane -R # navigate right with <C-a>l +bind h select-pane -L # navigate left with <C-a>h +bind j select-pane -D # navigate down with <C-a>j +bind k select-pane -U # navigate up with <C-a>k +bind l select-pane -R # navigate right with <C-a>l bind -r H resize-pane -L 5 # resize pane left with <C-a>H bind -r J resize-pane -D 5 # resize pane down with <C-a>J bind -r K resize-pane -U 5 # resize pane up with <C-a>K