2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-06-01 22:58:49 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2012-01-21 08:10:21 +00:00
|
|
|
#include <string.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Send keys to client.
|
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_send_keys_exec(struct cmd *, struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_send_keys_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "send-keys",
|
|
|
|
.alias = "send",
|
|
|
|
|
2022-12-16 08:13:40 +00:00
|
|
|
.args = { "c:FHKlMN:Rt:X", 0, -1, NULL },
|
|
|
|
.usage = "[-FHKlMRX] [-c target-client] [-N repeat-count] "
|
|
|
|
CMD_TARGET_PANE_USAGE " key ...",
|
2015-12-13 21:53:57 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
.target = { 't', CMD_FIND_PANE, 0 },
|
2015-12-14 00:31:54 +00:00
|
|
|
|
2022-12-19 07:30:10 +00:00
|
|
|
.flags = CMD_AFTERHOOK|CMD_CLIENT_CFLAG|CMD_CLIENT_CANFAIL,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_send_keys_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
const struct cmd_entry cmd_send_prefix_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "send-prefix",
|
|
|
|
.alias = NULL,
|
|
|
|
|
2021-08-21 10:22:38 +00:00
|
|
|
.args = { "2t:", 0, 0, NULL },
|
2015-12-13 21:53:57 +00:00
|
|
|
.usage = "[-2] " CMD_TARGET_PANE_USAGE,
|
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
.target = { 't', CMD_FIND_PANE, 0 },
|
2015-12-14 00:31:54 +00:00
|
|
|
|
2016-10-14 22:14:22 +00:00
|
|
|
.flags = CMD_AFTERHOOK,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_send_keys_exec
|
2013-03-24 09:54:10 +00:00
|
|
|
};
|
|
|
|
|
2019-05-09 13:12:59 +00:00
|
|
|
static struct cmdq_item *
|
2020-04-13 20:51:57 +00:00
|
|
|
cmd_send_keys_inject_key(struct cmdq_item *item, struct cmdq_item *after,
|
2022-12-16 08:13:40 +00:00
|
|
|
struct args *args, key_code key)
|
2017-05-09 17:56:55 +00:00
|
|
|
{
|
2020-04-13 10:59:58 +00:00
|
|
|
struct cmd_find_state *target = cmdq_get_target(item);
|
2020-04-13 20:51:57 +00:00
|
|
|
struct client *tc = cmdq_get_target_client(item);
|
|
|
|
struct session *s = target->s;
|
|
|
|
struct winlink *wl = target->wl;
|
|
|
|
struct window_pane *wp = target->wp;
|
2019-03-12 11:16:49 +00:00
|
|
|
struct window_mode_entry *wme;
|
2022-12-16 08:13:40 +00:00
|
|
|
struct key_table *table = NULL;
|
2019-03-07 20:24:21 +00:00
|
|
|
struct key_binding *bd;
|
2022-12-16 08:13:40 +00:00
|
|
|
struct key_event *event;
|
|
|
|
|
|
|
|
if (args_has(args, 'K')) {
|
2022-12-19 07:30:10 +00:00
|
|
|
if (tc == NULL)
|
|
|
|
return (item);
|
2024-10-01 06:15:47 +00:00
|
|
|
event = xcalloc(1, sizeof *event);
|
2023-01-16 11:26:14 +00:00
|
|
|
event->key = key|KEYC_SENT;
|
2022-12-16 08:13:40 +00:00
|
|
|
memset(&event->m, 0, sizeof event->m);
|
2024-10-01 06:15:47 +00:00
|
|
|
if (server_client_handle_key(tc, event) == 0) {
|
|
|
|
free(event->buf);
|
2022-12-16 08:13:40 +00:00
|
|
|
free(event);
|
2024-10-01 06:15:47 +00:00
|
|
|
}
|
2022-12-16 08:13:40 +00:00
|
|
|
return (item);
|
|
|
|
}
|
2019-03-07 20:24:21 +00:00
|
|
|
|
2020-04-13 20:51:57 +00:00
|
|
|
wme = TAILQ_FIRST(&wp->modes);
|
2019-03-07 20:24:21 +00:00
|
|
|
if (wme == NULL || wme->mode->key_table == NULL) {
|
2020-04-13 20:51:57 +00:00
|
|
|
if (window_pane_key(wp, tc, s, wl, key, NULL) != 0)
|
2020-01-13 07:51:54 +00:00
|
|
|
return (NULL);
|
2019-05-09 13:12:59 +00:00
|
|
|
return (item);
|
2017-05-09 17:56:55 +00:00
|
|
|
}
|
2019-03-07 20:24:21 +00:00
|
|
|
table = key_bindings_get_table(wme->mode->key_table(wme), 1);
|
2017-05-09 17:56:55 +00:00
|
|
|
|
2020-05-16 16:35:13 +00:00
|
|
|
bd = key_bindings_get(table, key & ~KEYC_MASK_FLAGS);
|
2017-05-09 17:56:55 +00:00
|
|
|
if (bd != NULL) {
|
|
|
|
table->references++;
|
2020-04-13 20:51:57 +00:00
|
|
|
after = key_bindings_dispatch(bd, after, tc, NULL, target);
|
2017-05-09 17:56:55 +00:00
|
|
|
key_bindings_unref_table(table);
|
|
|
|
}
|
2020-04-13 20:51:57 +00:00
|
|
|
return (after);
|
2017-05-09 17:56:55 +00:00
|
|
|
}
|
|
|
|
|
2019-07-09 14:03:12 +00:00
|
|
|
static struct cmdq_item *
|
2020-04-13 20:51:57 +00:00
|
|
|
cmd_send_keys_inject_string(struct cmdq_item *item, struct cmdq_item *after,
|
|
|
|
struct args *args, int i)
|
2019-07-09 14:03:12 +00:00
|
|
|
{
|
2021-08-20 19:50:16 +00:00
|
|
|
const char *s = args_string(args, i);
|
2020-05-25 18:57:24 +00:00
|
|
|
struct utf8_data *ud, *loop;
|
|
|
|
utf8_char uc;
|
2019-07-09 14:03:12 +00:00
|
|
|
key_code key;
|
|
|
|
char *endptr;
|
|
|
|
long n;
|
|
|
|
int literal;
|
|
|
|
|
|
|
|
if (args_has(args, 'H')) {
|
|
|
|
n = strtol(s, &endptr, 16);
|
|
|
|
if (*s =='\0' || n < 0 || n > 0xff || *endptr != '\0')
|
|
|
|
return (item);
|
2022-12-16 08:13:40 +00:00
|
|
|
return (cmd_send_keys_inject_key(item, after, args,
|
|
|
|
KEYC_LITERAL|n));
|
2019-07-09 14:03:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
literal = args_has(args, 'l');
|
|
|
|
if (!literal) {
|
|
|
|
key = key_string_lookup_string(s);
|
2020-01-13 07:51:54 +00:00
|
|
|
if (key != KEYC_NONE && key != KEYC_UNKNOWN) {
|
2022-12-16 08:13:40 +00:00
|
|
|
after = cmd_send_keys_inject_key(item, after, args,
|
|
|
|
key);
|
2020-04-13 20:51:57 +00:00
|
|
|
if (after != NULL)
|
|
|
|
return (after);
|
2020-01-13 07:51:54 +00:00
|
|
|
}
|
2019-07-09 14:03:12 +00:00
|
|
|
literal = 1;
|
|
|
|
}
|
|
|
|
if (literal) {
|
|
|
|
ud = utf8_fromcstr(s);
|
2020-05-25 18:57:24 +00:00
|
|
|
for (loop = ud; loop->size != 0; loop++) {
|
2020-05-27 14:45:35 +00:00
|
|
|
if (loop->size == 1 && loop->data[0] <= 0x7f)
|
|
|
|
key = loop->data[0];
|
|
|
|
else {
|
|
|
|
if (utf8_from_data(loop, &uc) != UTF8_DONE)
|
|
|
|
continue;
|
|
|
|
key = uc;
|
|
|
|
}
|
2022-12-16 08:13:40 +00:00
|
|
|
after = cmd_send_keys_inject_key(item, after, args,
|
|
|
|
key);
|
2019-07-10 14:33:24 +00:00
|
|
|
}
|
2019-07-09 14:03:12 +00:00
|
|
|
free(ud);
|
|
|
|
}
|
2020-04-13 20:51:57 +00:00
|
|
|
return (after);
|
2019-07-09 14:03:12 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_send_keys_exec(struct cmd *self, struct cmdq_item *item)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2020-04-13 08:26:27 +00:00
|
|
|
struct args *args = cmd_get_args(self);
|
2020-04-13 10:59:58 +00:00
|
|
|
struct cmd_find_state *target = cmdq_get_target(item);
|
2020-04-13 20:51:57 +00:00
|
|
|
struct client *tc = cmdq_get_target_client(item);
|
2020-04-13 10:59:58 +00:00
|
|
|
struct session *s = target->s;
|
|
|
|
struct winlink *wl = target->wl;
|
2020-04-13 20:51:57 +00:00
|
|
|
struct window_pane *wp = target->wp;
|
2020-04-13 14:46:04 +00:00
|
|
|
struct key_event *event = cmdq_get_event(item);
|
|
|
|
struct mouse_event *m = &event->m;
|
2019-03-12 11:16:49 +00:00
|
|
|
struct window_mode_entry *wme = TAILQ_FIRST(&wp->modes);
|
2020-04-13 20:51:57 +00:00
|
|
|
struct cmdq_item *after = item;
|
2019-03-07 20:24:21 +00:00
|
|
|
key_code key;
|
2021-08-20 19:50:16 +00:00
|
|
|
u_int i, np = 1;
|
|
|
|
u_int count = args_count(args);
|
2019-03-07 20:24:21 +00:00
|
|
|
char *cause = NULL;
|
2016-10-11 07:23:34 +00:00
|
|
|
|
|
|
|
if (args_has(args, 'N')) {
|
2022-06-07 10:02:19 +00:00
|
|
|
np = args_strtonum_and_expand(args, 'N', 1, UINT_MAX, item,
|
|
|
|
&cause);
|
2016-10-11 07:23:34 +00:00
|
|
|
if (cause != NULL) {
|
2016-11-29 12:54:46 +00:00
|
|
|
cmdq_error(item, "repeat count %s", cause);
|
2016-10-11 07:23:34 +00:00
|
|
|
free(cause);
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
2021-08-20 19:50:16 +00:00
|
|
|
if (wme != NULL && (args_has(args, 'X') || count == 0)) {
|
2020-04-09 13:52:31 +00:00
|
|
|
if (wme->mode->command == NULL) {
|
2019-03-12 11:16:49 +00:00
|
|
|
cmdq_error(item, "not in a mode");
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
2019-03-07 20:24:21 +00:00
|
|
|
wme->prefix = np;
|
2019-03-12 11:16:49 +00:00
|
|
|
}
|
2016-10-11 07:23:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (args_has(args, 'X')) {
|
2019-03-07 20:24:21 +00:00
|
|
|
if (wme == NULL || wme->mode->command == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "not in a mode");
|
2016-10-11 07:23:34 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
if (!m->valid)
|
2019-03-07 20:24:21 +00:00
|
|
|
m = NULL;
|
2020-04-13 20:51:57 +00:00
|
|
|
wme->mode->command(wme, tc, s, wl, args, m);
|
2016-10-11 07:23:34 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
|
|
|
|
2015-04-19 21:34:21 +00:00
|
|
|
if (args_has(args, 'M')) {
|
|
|
|
wp = cmd_mouse_pane(m, &s, NULL);
|
|
|
|
if (wp == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "no mouse target");
|
2015-04-19 21:34:21 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
2020-04-13 20:51:57 +00:00
|
|
|
window_pane_key(wp, tc, s, wl, m->key, m);
|
2015-04-19 21:34:21 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
|
|
|
|
2020-04-13 08:26:27 +00:00
|
|
|
if (cmd_get_entry(self) == &cmd_send_prefix_entry) {
|
2013-03-24 09:54:10 +00:00
|
|
|
if (args_has(args, '2'))
|
2015-10-27 15:58:42 +00:00
|
|
|
key = options_get_number(s->options, "prefix2");
|
2013-03-24 09:54:10 +00:00
|
|
|
else
|
2015-10-27 15:58:42 +00:00
|
|
|
key = options_get_number(s->options, "prefix");
|
2022-12-16 08:13:40 +00:00
|
|
|
cmd_send_keys_inject_key(item, item, args, key);
|
2013-03-24 09:54:10 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
|
|
|
|
2017-01-07 15:28:13 +00:00
|
|
|
if (args_has(args, 'R')) {
|
2021-08-11 20:49:55 +00:00
|
|
|
colour_palette_clear(&wp->palette);
|
2020-03-19 14:03:48 +00:00
|
|
|
input_reset(wp->ictx, 1);
|
2021-08-11 20:49:55 +00:00
|
|
|
wp->flags |= (PANE_STYLECHANGED|PANE_REDRAW);
|
2017-01-07 15:28:13 +00:00
|
|
|
}
|
2012-01-21 08:10:21 +00:00
|
|
|
|
2021-10-05 12:49:37 +00:00
|
|
|
if (count == 0) {
|
2021-10-19 12:51:43 +00:00
|
|
|
if (args_has(args, 'N') || args_has(args, 'R'))
|
2021-10-15 10:39:22 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2021-10-05 12:49:37 +00:00
|
|
|
for (; np != 0; np--)
|
2022-12-16 08:13:40 +00:00
|
|
|
cmd_send_keys_inject_key(item, NULL, args, event->key);
|
2021-10-05 12:49:37 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
|
|
|
|
2016-11-29 12:54:46 +00:00
|
|
|
for (; np != 0; np--) {
|
2021-08-20 19:50:16 +00:00
|
|
|
for (i = 0; i < count; i++) {
|
2020-04-13 20:51:57 +00:00
|
|
|
after = cmd_send_keys_inject_string(item, after, args,
|
|
|
|
i);
|
2020-04-13 10:59:58 +00:00
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|