diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-14 19:41:15 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-14 19:41:15 +0000 |
commit | 3f51dcdfc3aa4eb4e4dcaef9c5e610bc826b130c (patch) | |
tree | c9b8a2b89e509d2614631e3089a02fa877a56697 /cmd.c | |
parent | b4ac8c1342184d6a81985704c154f3a3e744fffd (diff) | |
download | rtmux-3f51dcdfc3aa4eb4e4dcaef9c5e610bc826b130c.tar.gz rtmux-3f51dcdfc3aa4eb4e4dcaef9c5e610bc826b130c.tar.bz2 rtmux-3f51dcdfc3aa4eb4e4dcaef9c5e610bc826b130c.zip |
up-pane and down-pane commands.
Diffstat (limited to 'cmd.c')
-rw-r--r-- | cmd.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: cmd.c,v 1.76 2009-01-13 06:50:10 nicm Exp $ */ +/* $Id: cmd.c,v 1.77 2009-01-14 19:41:15 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -33,6 +33,7 @@ const struct cmd_entry *cmd_table[] = { &cmd_copy_mode_entry, &cmd_delete_buffer_entry, &cmd_detach_client_entry, + &cmd_down_pane_entry, &cmd_has_session_entry, &cmd_kill_pane_entry, &cmd_kill_server_entry, @@ -81,6 +82,7 @@ const struct cmd_entry *cmd_table[] = { &cmd_switch_pane_entry, &cmd_unbind_key_entry, &cmd_unlink_window_entry, + &cmd_up_pane_entry, NULL }; |