File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ Notice most of the bindings emulate vim cursor movements.
27
27
- ` prefix + l ` and ` prefix + C-l ` <br />
28
28
select pane on the right
29
29
30
+ These mappings are ` repeatable ` .
31
+
30
32
<br />
31
33
32
34
** Note** : This overrides tmux's default binding for toggling between last
Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ get_tmux_option() {
16
16
}
17
17
18
18
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
27
27
}
28
28
29
29
window_move_bindings () {
You can’t perform that action at this time.
0 commit comments