diff options
Diffstat (limited to 'lib/tmux')
-rw-r--r-- | lib/tmux | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -27,11 +27,11 @@ bind -n M-j select-pane -D bind -n M-k select-pane -U bind -n M-l select-pane -R -# Use Alt-arrow keys without prefix key to switch panes -bind -n M-Left select-pane -L -bind -n M-Right select-pane -R -bind -n M-Up select-pane -U -bind -n M-Down select-pane -D +# Use Alt-vim capitalized keys without prefix key to resize panes +bind -n M-H resize-pane -L +bind -n M-J resize-pane -D +bind -n M-K resize-pane -U +bind -n M-L resize-pane -R # Shift arrow to switch windows bind -n S-Left previous-window |