summaryrefslogtreecommitdiffstats
path: root/tools/arch
ModeNameSize
d---------alpha / include34logstatsplain
d---------arc / include / uapi / asm34logstatsplain
d---------arm / include34logstatsplain
d---------arm64 / include34logstatsplain
d---------frv / include / uapi / asm34logstatsplain
d---------h8300 / include34logstatsplain
d---------hexagon / include / uapi / asm34logstatsplain
d---------ia64 / include34logstatsplain
d---------m32r / include / uapi / asm34logstatsplain
d---------microblaze / include / uapi / asm34logstatsplain
d---------mips / include34logstatsplain
d---------mn10300 / include / uapi / asm34logstatsplain
d---------parisc / include / uapi / asm34logstatsplain
d---------powerpc / include34logstatsplain
d---------s390 / include34logstatsplain
d---------score / include / uapi / asm34logstatsplain
d---------sh / include34logstatsplain
d---------sparc / include34logstatsplain
d---------tile / include34logstatsplain
d---------x8664logstatsplain
d---------xtensa / include34logstatsplain
class="n">cmd_send_prefix_entry = { .name = "send-prefix", .alias = NULL, .args = { "2t:", 0, 0 }, .usage = "[-2] " CMD_TARGET_PANE_USAGE, .tflag = CMD_PANE, .flags = CMD_AFTERHOOK, .exec = cmd_send_keys_exec }; static enum cmd_retval cmd_send_keys_exec(struct cmd *self, struct cmdq_item *item) { struct args *args = self->args; struct client *c = item->state.c; struct window_pane *wp = item->state.tflag.wp; struct session *s = item->state.tflag.s; struct mouse_event *m = &item->mouse; const u_char *keystr; int i, literal; key_code key; u_int np; char *cause = NULL; if (args_has(args, 'N')) { if (wp->mode == NULL || wp->mode->command == NULL) { cmdq_error(item, "not in a mode"); return (CMD_RETURN_ERROR); } np = args_strtonum(args, 'N', 1, UINT_MAX, &cause); if (cause != NULL) { cmdq_error(item, "prefix %s", cause); free(cause); return (CMD_RETURN_ERROR); } wp->modeprefix = np; } if (args_has(args, 'X')) { if (wp->mode == NULL || wp->mode->command == NULL) { cmdq_error(item, "not in a mode"); return (CMD_RETURN_ERROR); } if (!m->valid) wp->mode->command(wp, c, s, args, NULL); else wp->mode->command(wp, c, s, args, m); return (CMD_RETURN_NORMAL); } if (args_has(args, 'N')) /* only with -X */ return (CMD_RETURN_NORMAL); if (args_has(args, 'M')) { wp = cmd_mouse_pane(m, &s, NULL); if (wp == NULL) { cmdq_error(item, "no mouse target"); return (CMD_RETURN_ERROR); } window_pane_key(wp, NULL, s, m->key, m); return (CMD_RETURN_NORMAL); } if (self->entry == &cmd_send_prefix_entry) { if (args_has(args, '2')) key = options_get_number(s->options, "prefix2"); else key = options_get_number(s->options, "prefix"); window_pane_key(wp, NULL, s, key, NULL); return (CMD_RETURN_NORMAL); } if (args_has(args, 'R')) input_reset(wp, 1); for (i = 0; i < args->argc; i++) { literal = args_has(args, 'l'); if (!literal) { key = key_string_lookup_string(args->argv[i]); if (key != KEYC_NONE && key != KEYC_UNKNOWN) window_pane_key(wp, NULL, s, key, NULL); else literal = 1; } if (literal) { for (keystr = args->argv[i]; *keystr != '\0'; keystr++) window_pane_key(wp, NULL, s, *keystr, NULL); } } return (CMD_RETURN_NORMAL); }