1
1
Fork 0

tmux.conf: Change panes using C-[hjkl]

Resizing is now M-[hjkl].
This commit is contained in:
Jonathan Schleifer 2015-02-15 19:23:42 +00:00
parent 102ad7050d
commit a994d98f0b

View file

@ -7,8 +7,12 @@ set -w -g window-status-current-fg colour39
set -w -g window-status-current-bg colour236 set -w -g window-status-current-bg colour236
set -w -g window-status-bell-fg colour233 set -w -g window-status-bell-fg colour233
set -w -g window-status-bell-bg colour124 set -w -g window-status-bell-bg colour124
bind -r C-h resize-pane -L bind -r C-h select-pane -L
bind -r C-j resize-pane -D bind -r C-j select-pane -D
bind -r C-k resize-pane -U bind -r C-k select-pane -U
bind -r C-l resize-pane -R bind -r C-l select-pane -R
bind -r M-h resize-pane -L
bind -r M-j resize-pane -D
bind -r M-k resize-pane -U
bind -r M-l resize-pane -R
set -ag terminal-overrides ",*:XT@" set -ag terminal-overrides ",*:XT@"