diff options
author | 2010-01-07 20:52:18 +0000 | |
---|---|---|
committer | 2010-01-07 20:52:18 +0000 | |
commit | 572cd943d922f2baa649f3a45637ab4b573e26da (patch) | |
tree | d3f41d5c41923ed54f311d64f851d9c800dc2682 /usr.bin/tmux/cmd.c | |
parent | Repair non-MULTIPROCESSOR kernel compilation. (diff) | |
download | wireguard-openbsd-572cd943d922f2baa649f3a45637ab4b573e26da.tar.xz wireguard-openbsd-572cd943d922f2baa649f3a45637ab4b573e26da.zip |
New command, join-pane, to split and move an existing pane into the space (like
splitw then movep, or the reverse of breakp).
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 007ae1f3c30..954dad66056 100644 --- a/usr.bin/tmux/cmd.c +++ b/usr.bin/tmux/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.36 2009/12/08 07:49:31 nicm Exp $ */ +/* $OpenBSD: cmd.c,v 1.37 2010/01/07 20:52:18 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -49,6 +49,7 @@ const struct cmd_entry *cmd_table[] = { &cmd_find_window_entry, &cmd_has_session_entry, &cmd_if_shell_entry, + &cmd_join_pane_entry, &cmd_kill_pane_entry, &cmd_kill_server_entry, &cmd_kill_session_entry, |