tmux
This commit is contained in:
parent
396a19ea6e
commit
8b3db372be
1 changed files with 7 additions and 1 deletions
|
@ -24,7 +24,7 @@ bind-key -n M-y copy-mode
|
||||||
|
|
||||||
bind-key -n M-s split-window -h -c "#{pane_current_path}"
|
bind-key -n M-s split-window -h -c "#{pane_current_path}"
|
||||||
bind-key -n M-S split-window -v -c "#{pane_current_path}"
|
bind-key -n M-S split-window -v -c "#{pane_current_path}"
|
||||||
bind-key -n M-o split-window -v -c "#{pane_current_path}" -l 10
|
bind-key -n M-o split-window -v -c "#{pane_current_path}" -l 6
|
||||||
|
|
||||||
bind-key -n M-t new-window -c "#{pane_current_path}"
|
bind-key -n M-t new-window -c "#{pane_current_path}"
|
||||||
bind-key -n M-w kill-window
|
bind-key -n M-w kill-window
|
||||||
|
@ -37,6 +37,12 @@ bind-key M choose-window -F "#{window_index}: #{window_name}" "join-pane -v -t %
|
||||||
bind-key o choose-window -F "#{window_index}: #{window_name}" "join-pane -v -l 10 -t %%"
|
bind-key o choose-window -F "#{window_index}: #{window_name}" "join-pane -v -l 10 -t %%"
|
||||||
bind-key b break-pane
|
bind-key b break-pane
|
||||||
|
|
||||||
|
# resize pane
|
||||||
|
bind H resize-pane -L 5
|
||||||
|
bind J resize-pane -D 5
|
||||||
|
bind K resize-pane -U 5
|
||||||
|
bind L resize-pane -R 5
|
||||||
|
|
||||||
# Start windows and panes at 1, not 0
|
# Start windows and panes at 1, not 0
|
||||||
set -g base-index 1
|
set -g base-index 1
|
||||||
set -g pane-base-index 1
|
set -g pane-base-index 1
|
||||||
|
|
Loading…
Reference in a new issue