summaryrefslogtreecommitdiffstats
path: root/cmd-copy-mode.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-05 21:25:00 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-05 21:25:00 +0000
commit0b9b873a5505de6fdfb8f02cfbaef5fc82831a5f (patch)
treef034330734848ce9df96ee94ab4dc6a7ad025dc9 /cmd-copy-mode.c
parentee1a7fded7653ffc2ba68a4188c89a7cb6e1bf1d (diff)
Big reorganisation of command-line syntax.
Diffstat (limited to 'cmd-copy-mode.c')
-rw-r--r--cmd-copy-mode.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/cmd-copy-mode.c b/cmd-copy-mode.c
index 37bb4a2f..530ee947 100644
--- a/cmd-copy-mode.c
+++ b/cmd-copy-mode.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-copy-mode.c,v 1.9 2008-06-05 16:35:31 nicm Exp $ */
+/* $Id: cmd-copy-mode.c,v 1.10 2008-06-05 21:25:00 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -28,23 +28,24 @@ void cmd_copy_mode_exec(struct cmd *, struct cmd_ctx *);
const struct cmd_entry cmd_copy_mode_entry = {
"copy-mode", NULL,
- CMD_WINDOWONLY_USAGE,
+ CMD_TARGET_WINDOW_USAGE,
0,
- cmd_windowonly_parse,
+ cmd_target_init,
+ cmd_target_parse,
cmd_copy_mode_exec,
- cmd_windowonly_send,
- cmd_windowonly_recv,
- cmd_windowonly_free,
- NULL,
+ cmd_target_send,
+ cmd_target_recv,
+ cmd_target_free,
NULL
};
void
cmd_copy_mode_exec(struct cmd *self, struct cmd_ctx *ctx)
{
- struct winlink *wl;
+ struct cmd_target_data *data = self->data;
+ struct winlink *wl;
- if ((wl = cmd_windowonly_get(self, ctx, NULL)) == NULL)
+ if ((wl = cmd_find_window(ctx, data->target, NULL)) == NULL)
return;
window_set_mode(wl->window, &window_copy_mode);