diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-15 19:27:31 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-15 19:27:31 +0000 |
commit | d29ca39e0eb6a47986d05ebefce23349e1635c00 (patch) | |
tree | 0a087fa32b7bd8746443c21e5f473aa14cbc1004 /key-bindings.c | |
parent | c5c4cc7557f107547d3de8f530395f87fa37d1ee (diff) | |
download | rtmux-d29ca39e0eb6a47986d05ebefce23349e1635c00.tar.gz rtmux-d29ca39e0eb6a47986d05ebefce23349e1635c00.tar.bz2 rtmux-d29ca39e0eb6a47986d05ebefce23349e1635c00.zip |
Two new commands, choose-window and choose-session which work only when bound to a key and allow the window or session to be selected from a list.
Diffstat (limited to 'key-bindings.c')
-rw-r--r-- | key-bindings.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/key-bindings.c b/key-bindings.c index 2358fa62..eab6b503 100644 --- a/key-bindings.c +++ b/key-bindings.c @@ -1,4 +1,4 @@ -/* $Id: key-bindings.c,v 1.51 2009-01-14 22:14:51 nicm Exp $ */ +/* $Id: key-bindings.c,v 1.52 2009-01-15 19:27:31 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -105,9 +105,9 @@ key_bindings_init(void) { 'o', &cmd_down_pane_entry }, { 'p', &cmd_previous_window_entry }, { 'r', &cmd_refresh_client_entry }, - { 's', &cmd_list_sessions_entry }, + { 's', &cmd_choose_session_entry }, { 't', &cmd_clock_mode_entry }, - { 'w', &cmd_list_windows_entry }, + { 'w', &cmd_choose_window_entry }, { 'x', &cmd_kill_pane_entry, }, { KEYC_UP, &cmd_up_pane_entry }, { KEYC_DOWN, &cmd_down_pane_entry }, |