From a938cd0f46b6603ea4bb2ca879e2d8d7164ca466 Mon Sep 17 00:00:00 2001 From: David Sadler Date: Fri, 27 Mar 2026 16:33:03 +0000 Subject: WSL Disable key shortcut in tmux as they are not working correctly in wsl --- tmux/.config/tmux/tmux.conf | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'tmux') 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 -- cgit v1.2.3-13-gbd6f