aboutsummaryrefslogtreecommitdiff
path: root/command.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-09-22 11:50:33 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-09-22 11:50:33 +0000
commit3fef2d998fb0fd1f4fd9f4b96c33816acf523567 (patch)
tree8c3efe4557f9492d495ef02b139b96b00bf4874a /command.c
parent5ea2ac36e4eaf1ae3303ada380cad8b4bbcbfe8f (diff)
downloadrtmux-3fef2d998fb0fd1f4fd9f4b96c33816acf523567.tar.gz
rtmux-3fef2d998fb0fd1f4fd9f4b96c33816acf523567.tar.bz2
rtmux-3fef2d998fb0fd1f4fd9f4b96c33816acf523567.zip
Window list with C-b W.
Diffstat (limited to 'command.c')
-rw-r--r--command.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/command.c b/command.c
index 0b992dbe..d07bd35f 100644
--- a/command.c
+++ b/command.c
@@ -1,4 +1,4 @@
-/* $Id: command.c,v 1.6 2007-09-20 18:51:34 nicm Exp $ */
+/* $Id: command.c,v 1.7 2007-09-22 11:50:33 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -56,7 +56,9 @@ struct cmd cmd_table[] = {
{ 'T', cmd_fn_msg, MSG_RENAME },
{ 't', cmd_fn_msg, MSG_RENAME },
{ 'L', cmd_fn_msg, MSG_LAST },
- { 'l', cmd_fn_msg, MSG_LAST }
+ { 'l', cmd_fn_msg, MSG_LAST },
+ { 'W', cmd_fn_msg, MSG_WINDOWLIST },
+ { 'w', cmd_fn_msg, MSG_WINDOWLIST }
};
/* Dispatch to a command. */