summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-19 21:28:41 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-19 21:28:41 +0000
commitbe0cf3bfe4523801cd4da6cb35eb53e8ee5bf234 (patch)
treeb70b90a87e9f9608826abc6d507d5064b9c748af
parent85135221f08d2e2d54269c8b8fc4325833c2fe9d (diff)
Add ; too.
-rw-r--r--TODO3
-rw-r--r--key-bindings.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/TODO b/TODO
index 2e9561b3..0bfed32c 100644
--- a/TODO
+++ b/TODO
@@ -84,5 +84,6 @@ option to pass through to xterm window when switching window
session not being watched?
- document status-left/status-right/status-interval/set-titles/command-prompt
- enhance paste buffers. per-session buffers, lots of command love
-- command history for command-prompt
+- command history for command-prompt. tab completion
+- configurable error/info display time
- tidy up window modes
diff --git a/key-bindings.c b/key-bindings.c
index 8df7791a..f1f8d6fd 100644
--- a/key-bindings.c
+++ b/key-bindings.c
@@ -1,4 +1,4 @@
-/* $Id: key-bindings.c,v 1.32 2008-06-19 20:45:20 nicm Exp $ */
+/* $Id: key-bindings.c,v 1.33 2008-06-19 21:28:41 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -109,6 +109,7 @@ key_bindings_init(void)
{ '[', &cmd_copy_mode_entry },
{ ']', &cmd_paste_buffer_entry },
{ ':', &cmd_command_prompt_entry },
+ { ';', &cmd_command_prompt_entry },
{ META, &cmd_send_prefix_entry },
};
u_int i;