Skip to content

Commit

Permalink
Use + to split-join an existing window
Browse files Browse the repository at this point in the history
  • Loading branch information
joeytwiddle committed Aug 12, 2016
1 parent a6a0f42 commit f62e3b1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .tmux.conf
Expand Up @@ -165,10 +165,12 @@ bind k select-pane -U
bind l select-pane -R

# Bring a pane from another window (must pass : for absolute window id)
bind-key J command-prompt -p "Join pane from:" "join-pane -s ':%%'"
bind-key + command-prompt -p "join pane from:" "join-pane -s '%%'"

bind-key - resize-pane -D 2
bind-key + resize-pane -U 2
# Disabled because + is used for join-pane and - is used for split-window -v
# Use JKLH instead
#bind-key - resize-pane -D 2
#bind-key + resize-pane -U 2
#bind-key / resize-pane -L 2
#bind-key * resize-pane -R 2

Expand Down

0 comments on commit f62e3b1

Please sign in to comment.