diff options
| author | David Sadler <david@flashacademy.com> | 2026-03-27 16:33:03 +0000 |
|---|---|---|
| committer | David Sadler <david@flashacademy.com> | 2026-03-27 16:33:03 +0000 |
| commit | a938cd0f46b6603ea4bb2ca879e2d8d7164ca466 (patch) | |
| tree | 64ff4780a1745a852233940f9104626c72ec1a3d /tmux | |
| parent | a0794272335556c5f6c97ff006bee275f68137ad (diff) | |
WSL Disable key shortcut in tmux as they are not working correctly in wsl
Diffstat (limited to 'tmux')
| -rw-r--r-- | tmux/.config/tmux/tmux.conf | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf index 59b1d33..a2d19b5 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/.config/tmux/tmux.conf @@ -26,10 +26,15 @@ bind k select-pane -UZ bind l select-pane -RZ # Alt+hjkl,cursor keys to switch panes without prefix. -bind -n M-h select-pane -LZ -bind -n M-j select-pane -DZ -bind -n M-k select-pane -UZ -bind -n M-l select-pane -RZ +# Temp on WSL as somehow I keep getting swapped to different panes. +unbind -n M-h +unbind -n M-j +unbind -n M-k +unbind -n M-l +# bind -n M-h select-pane -LZ +# bind -n M-j select-pane -DZ +# bind -n M-k select-pane -UZ +# bind -n M-l select-pane -RZ bind -n M-Left select-pane -LZ bind -n M-Down select-pane -DZ bind -n M-Up select-pane -UZ |
