diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-30 13:02:14 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-30 13:02:14 +0000 |
commit | 308bc18947506adebc0c469528b926e31c9b52b8 (patch) | |
tree | b7c5a683b61f1443840b5f47fb710841e9cdf5ed /client-cmd.c | |
parent | f4fd8c225e3be626875fab6c746b68d64060abcc (diff) | |
download | rtmux-308bc18947506adebc0c469528b926e31c9b52b8.tar.gz rtmux-308bc18947506adebc0c469528b926e31c9b52b8.tar.bz2 rtmux-308bc18947506adebc0c469528b926e31c9b52b8.zip |
Window info command.
Diffstat (limited to 'client-cmd.c')
-rw-r--r-- | client-cmd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client-cmd.c b/client-cmd.c index 6fa2370c..2d98d02d 100644 --- a/client-cmd.c +++ b/client-cmd.c @@ -1,4 +1,4 @@ -/* $Id: client-cmd.c,v 1.5 2007-09-28 21:41:52 mxey Exp $ */ +/* $Id: client-cmd.c,v 1.6 2007-09-30 13:02:14 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -57,6 +57,8 @@ struct cmd client_cmd_table[] = { { 'l', client_cmd_fn_msg, MSG_LAST }, { 'W', client_cmd_fn_msg, MSG_WINDOWLIST }, { 'w', client_cmd_fn_msg, MSG_WINDOWLIST }, + { 'I', client_cmd_fn_msg, MSG_WINDOWINFO }, + { 'i', client_cmd_fn_msg, MSG_WINDOWINFO }, }; #define NCLIENTCMD (sizeof client_cmd_table / sizeof client_cmd_table[0]) |