4 * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
27 * Send keys to client.
30 int cmd_send_keys_exec(struct cmd
*, struct cmd_ctx
*);
32 const struct cmd_entry cmd_send_keys_entry
= {
35 "[-R] [-t target-pane] key ...",
43 cmd_send_keys_exec(struct cmd
*self
, struct cmd_ctx
*ctx
)
45 struct args
*args
= self
->args
;
46 struct window_pane
*wp
;
48 struct input_ctx
*ictx
;
52 if (cmd_find_pane(ctx
, args_get(args
, 't'), &s
, &wp
) == NULL
)
55 if (args_has(args
, 'R')) {
58 memcpy(&ictx
->cell
, &grid_default_cell
, sizeof ictx
->cell
);
59 memcpy(&ictx
->old_cell
, &ictx
->cell
, sizeof ictx
->old_cell
);
64 screen_write_start(&ictx
->ctx
, wp
, &wp
->base
);
66 screen_write_start(&ictx
->ctx
, NULL
, &wp
->base
);
67 screen_write_reset(&ictx
->ctx
);
68 screen_write_stop(&ictx
->ctx
);
71 for (i
= 0; i
< args
->argc
; i
++) {
74 if ((key
= key_string_lookup_string(str
)) != KEYC_NONE
) {
75 window_pane_key(wp
, s
, key
);
77 for (; *str
!= '\0'; str
++)
78 window_pane_key(wp
, s
, *str
);