diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-22 18:09:43 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-22 18:09:43 +0000 |
commit | 18d72e69289fa3dbdb0766ea7f9c0ff8908626b9 (patch) | |
tree | db3fca1dba3a1041c902764f32b2fcdf2cd915c2 /key-bindings.c | |
parent | 4930e894c278a9267861ccf3db231d97d2208741 (diff) | |
download | rtmux-18d72e69289fa3dbdb0766ea7f9c0ff8908626b9.tar.gz rtmux-18d72e69289fa3dbdb0766ea7f9c0ff8908626b9.tar.bz2 rtmux-18d72e69289fa3dbdb0766ea7f9c0ff8908626b9.zip |
Partial copy mode. Currently does the same as scroll mode but using a cursor. Also fix bug where resizing would leave crap lying around.
Diffstat (limited to 'key-bindings.c')
-rw-r--r-- | key-bindings.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/key-bindings.c b/key-bindings.c index 5f13dd60..84358b4d 100644 --- a/key-bindings.c +++ b/key-bindings.c @@ -1,4 +1,4 @@ -/* $Id: key-bindings.c,v 1.19 2007-11-21 19:44:05 nicm Exp $ */ +/* $Id: key-bindings.c,v 1.20 2007-11-22 18:09:43 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -109,6 +109,7 @@ key_bindings_init(void) { 'r', &cmd_refresh_client_entry, NULL }, { '&', &cmd_kill_window_entry, NULL }, { '=', &cmd_scroll_mode_entry, NULL }, + { '[', &cmd_copy_mode_entry, NULL }, { META, &cmd_send_prefix_entry, NULL }, }; u_int i; |