diff options
author | Ben Sima <ben@bsima.me> | 2020-06-25 13:13:49 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-06-25 13:13:49 -0700 |
commit | e59cc19522a53171fd677532eb099e9f84ba0f97 (patch) | |
tree | b321cf8e37fb0056033e650545e6c77736195ca2 /lib/tmux | |
parent | ecfdcbed9fdd49a32c65db7c07c1cacac87ab225 (diff) |
tmux: send/join panes
Diffstat (limited to 'lib/tmux')
-rw-r--r-- | lib/tmux | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -17,6 +17,10 @@ setw -g monitor-activity on bind-key | split-window -h bind-key - split-window -v +# Send/join panes +bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'" +bind-key s command-prompt -p "send pane to:" "join-pane -t '%%'" + # Use Alt-vim keys without prefix key to switch panes bind -n M-h select-pane -L bind -n M-j select-pane -D |