diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-03-03 08:31:19 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-03-03 08:31:19 +0000 |
commit | 9c860108cb4b13cf21d9eac066059b3fe483b26d (patch) | |
tree | 62fdc4afc31f255af883290f1fc31ccff729fb45 /usr.bin/tmux/cmd.c | |
parent | da6ee612f9cc5cf7a0d1d9c97c01ae3815ed28fd (diff) |
Add move-pane command (like join-pane but allows the same window). Also
-b flag to join-pane and move-pane to place the pane to the left or
above. From George Nachman.
Diffstat (limited to 'usr.bin/tmux/cmd.c')
-rw-r--r-- | usr.bin/tmux/cmd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd.c b/usr.bin/tmux/cmd.c index 183a5e1588e..08744ed651e 100644 --- a/usr.bin/tmux/cmd.c +++ b/usr.bin/tmux/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.62 2012/02/06 17:29:29 nicm Exp $ */ +/* $OpenBSD: cmd.c,v 1.63 2012/03/03 08:31:18 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -68,6 +68,7 @@ const struct cmd_entry *cmd_table[] = { &cmd_lock_client_entry, &cmd_lock_server_entry, &cmd_lock_session_entry, + &cmd_move_pane_entry, &cmd_move_window_entry, &cmd_new_session_entry, &cmd_new_window_entry, |