move-window bound to ., from joshe.

This commit is contained in:
Nicholas Marriott
2009-01-30 21:10:10 +00:00
parent d8f027c070
commit 0127137bbe
3 changed files with 11 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $Id: cmd-command-prompt.c,v 1.12 2009-01-19 18:23:40 nicm Exp $ */
/* $Id: cmd-command-prompt.c,v 1.13 2009-01-30 21:10:10 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@ -62,6 +62,9 @@ cmd_command_prompt_init(struct cmd *self, int key)
case ',':
data->arg = xstrdup("rename-window '%%'");
break;
case '.':
data->arg = xstrdup("move-window -t '%%'");
break;
case 'f':
data->arg = xstrdup("find-window '%%'");
break;