diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-30 21:10:10 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-30 21:10:10 +0000 |
commit | 0127137bbe0d5bd9108184521a1f5eaa48b5089a (patch) | |
tree | 98ee6862febcddd4211ee58767e6f467904a1f88 /cmd-command-prompt.c | |
parent | d8f027c07078abaf8af187011cb1cdcc54986032 (diff) | |
download | rtmux-0127137bbe0d5bd9108184521a1f5eaa48b5089a.tar.gz rtmux-0127137bbe0d5bd9108184521a1f5eaa48b5089a.tar.bz2 rtmux-0127137bbe0d5bd9108184521a1f5eaa48b5089a.zip |
move-window bound to ., from joshe.
Diffstat (limited to 'cmd-command-prompt.c')
-rw-r--r-- | cmd-command-prompt.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cmd-command-prompt.c b/cmd-command-prompt.c index be962173..0f40870b 100644 --- a/cmd-command-prompt.c +++ b/cmd-command-prompt.c @@ -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; |