Updated tmux to have resize pane bindings.
This commit is contained in:
@@ -2,6 +2,11 @@
|
|||||||
# NAVIGATION
|
# NAVIGATION
|
||||||
############
|
############
|
||||||
### Helpful Arrow Key Navigation Changes
|
### Helpful Arrow Key Navigation Changes
|
||||||
|
# Resize the current pane using Alt + direction
|
||||||
|
bind -n M-Up resize-pane -U 1
|
||||||
|
bind -n M-Down resize-pane -D 1
|
||||||
|
bind -n M-Left resize-pane -L 1
|
||||||
|
bind -n M-Right resize-pane -R 1
|
||||||
# Use Alt-arrow keys without prefix key to move panes
|
# Use Alt-arrow keys without prefix key to move panes
|
||||||
bind -n C-Left select-pane -L
|
bind -n C-Left select-pane -L
|
||||||
bind -n C-Right select-pane -R
|
bind -n C-Right select-pane -R
|
||||||
@@ -10,15 +15,6 @@ bind -n C-Down select-pane -D
|
|||||||
# Shift arrow to switch windows
|
# Shift arrow to switch windows
|
||||||
bind -n S-Left previous-window
|
bind -n S-Left previous-window
|
||||||
bind -n S-Right next-window
|
bind -n S-Right next-window
|
||||||
### Helpful VIM Navigation Changes (Conflicts with Arrows; Choose One)
|
|
||||||
# Vim style pane selection
|
|
||||||
#bind-key h select-pane -L
|
|
||||||
#bind-key j select-pane -D
|
|
||||||
#bind-key k select-pane -U
|
|
||||||
#bind-key l select-pane -R
|
|
||||||
# Shift Alt vim keys to switch windows
|
|
||||||
#bind -n M-H previous-window
|
|
||||||
#bind -n M-L next-window
|
|
||||||
|
|
||||||
##########
|
##########
|
||||||
# PLUG-INS
|
# PLUG-INS
|
||||||
|
|||||||
Reference in New Issue
Block a user