diff options
author | Tiago Cunha <tcunha@gmx.com> | 2010-05-14 14:33:39 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2010-05-14 14:33:39 +0000 |
commit | 9900e28ba88526eec3ba623ea1ebc94116257c97 (patch) | |
tree | 99925eae7e89558ff364cb594f69eb7401aa0ac8 /key-bindings.c | |
parent | fc69b9ccb79fc5d1a345918d1ceccf990eb723ef (diff) | |
download | rtmux-9900e28ba88526eec3ba623ea1ebc94116257c97.tar.gz rtmux-9900e28ba88526eec3ba623ea1ebc94116257c97.tar.bz2 rtmux-9900e28ba88526eec3ba623ea1ebc94116257c97.zip |
Sync OpenBSD patchset 697:
Identical behaviour to select-prompt can now be obtained with
command-prompt, so remove select-prompt and change ' to be bound to
command-prompt -p index "select-window -t :%%".
Diffstat (limited to 'key-bindings.c')
-rw-r--r-- | key-bindings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/key-bindings.c b/key-bindings.c index 7301a4d9..1a41398c 100644 --- a/key-bindings.c +++ b/key-bindings.c @@ -1,4 +1,4 @@ -/* $Id: key-bindings.c,v 1.91 2010-05-14 14:16:37 tcunha Exp $ */ +/* $Id: key-bindings.c,v 1.92 2010-05-14 14:33:39 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -125,7 +125,7 @@ key_bindings_init(void) { '?', 0, &cmd_list_keys_entry }, { 'D', 0, &cmd_choose_client_entry }, { '[', 0, &cmd_copy_mode_entry }, - { '\'', 0, &cmd_select_prompt_entry }, + { '\'', 0, &cmd_command_prompt_entry }, { '\002', /* C-b */ 0, &cmd_send_prefix_entry }, { '\017', /* C-o */ 0, &cmd_rotate_window_entry }, { '\032', /* C-z */ 0, &cmd_suspend_client_entry }, |