Added tmux arrow swtich fix
| Author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-04-17 02:56:33 +0200 |
| Committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-04-17 02:56:33 +0200 |
| Commit | feff893a109345d9c21a3d6cd703a27f0de5ab61 (patch) |
|
-rw-r--r-- |
tmux.conf | 7 |
1 files changed, 7 insertions, 0 deletions
| diff --git a/tmux.conf b/tmux.conf | |||
| ... | |||
| 25 | # Other settings |
25 | # Other settings |
| 26 | set-option -sg escape-time 10 |
26 | set-option -sg escape-time 10 |
| 27 | set-option -g mouse off |
27 | set-option -g mouse off |
| 28 | |||
| 29 | # Removes the double pressing. Fixes switching panes and pressing up right |
||
| 30 | # after switching panes. Must have! |
||
| 31 | bind-key Up select-pane -U |
||
| 32 | bind-key Down select-pane -D |
||
| 33 | bind-key Left select-pane -L |
||
| 34 | bind-key Right select-pane -R |
||