diff options
author | Ryan Kavanagh <rak@debian.org> | 2014-05-16 10:01:25 +0200 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2014-05-16 10:01:25 +0200 |
commit | 9b9a4e948b55ad0d3c9e31f27fe0ed10830c234c (patch) | |
tree | bc1c7af8487071b866d247caabc26d484bf45789 /.tmux.conf | |
parent | Add alias for WQXR to zshrc (diff) |
Add keybindings for join-pane to tmux
http://unix.stackexchange.com/questions/14300/moving-tmux-window-to-pane/14301#14301
Diffstat (limited to '.tmux.conf')
-rw-r--r-- | .tmux.conf | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -59,3 +59,7 @@ set -g default-terminal "screen-256color" bind C-y save-buffer ~/.tmux-buffer \; run "xsel -i -b <~/.tmux-buffer && rm ~/.tmux-buffer" bind C new-session + +# pane movement +bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'" +bind-key s command-prompt -p "send pane to:" "join-pane -t '%%'" |