summaryrefslogtreecommitdiff
path: root/tmux
diff options
context:
space:
mode:
Diffstat (limited to 'tmux')
-rw-r--r--tmux/.config/tmux/tmux.conf13
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