=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/server.c,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- src/usr.bin/tmux/server.c 2009/09/07 21:01:50 1.31 +++ src/usr.bin/tmux/server.c 2009/09/07 21:12:12 1.32 @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.31 2009/09/07 21:01:50 nicm Exp $ */ +/* $OpenBSD: server.c,v 1.32 2009/09/07 21:12:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -795,6 +795,7 @@ void server_handle_client(struct client *c) { + struct window *w; struct window_pane *wp; struct screen *s; struct timeval tv; @@ -818,8 +819,18 @@ if (c->session == NULL) return; - wp = c->session->curw->window->active; /* could die */ + w = c->session->curw->window; + wp = w->active; /* could die */ + /* Special case: number keys jump to pane in identify mode. */ + if (c->flags & CLIENT_IDENTIFY && key >= '0' && key <= '9') { + wp = window_pane_at_index(w, key - '0'); + if (wp != NULL && window_pane_visible(wp)) + window_set_active_pane(w, wp); + server_clear_identify(c); + continue; + } + status_message_clear(c); server_clear_identify(c); if (c->prompt_string != NULL) {