Skip to content

Commit b3c5333

Browse files
committed
Make pane navigation bindings repeatable
1 parent 7316676 commit b3c5333

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pain_control.tmux

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ get_tmux_option() {
1616
}
1717

1818
pane_navigation_bindings() {
19-
tmux bind-key h select-pane -L
20-
tmux bind-key C-h select-pane -L
21-
tmux bind-key j select-pane -D
22-
tmux bind-key C-j select-pane -D
23-
tmux bind-key k select-pane -U
24-
tmux bind-key C-k select-pane -U
25-
tmux bind-key l select-pane -R
26-
tmux bind-key C-l select-pane -R
19+
tmux bind-key -r h select-pane -L
20+
tmux bind-key -r C-h select-pane -L
21+
tmux bind-key -r j select-pane -D
22+
tmux bind-key -r C-j select-pane -D
23+
tmux bind-key -r k select-pane -U
24+
tmux bind-key -r C-k select-pane -U
25+
tmux bind-key -r l select-pane -R
26+
tmux bind-key -r C-l select-pane -R
2727
}
2828

2929
window_move_bindings() {

0 commit comments

Comments
 (0)