[BACK]Return to cmd-send-keys.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/cmd-send-keys.c, Revision 1.23

1.23    ! nicm        1: /* $OpenBSD: cmd-send-keys.c,v 1.22 2015/11/12 11:05:34 nicm Exp $ */
1.1       nicm        2:
                      3: /*
                      4:  * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
                      5:  *
                      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.
                      9:  *
                     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.
                     17:  */
                     18:
                     19: #include <sys/types.h>
                     20:
                     21: #include <stdlib.h>
1.10      nicm       22: #include <string.h>
1.1       nicm       23:
                     24: #include "tmux.h"
                     25:
                     26: /*
                     27:  * Send keys to client.
                     28:  */
                     29:
1.15      nicm       30: enum cmd_retval         cmd_send_keys_exec(struct cmd *, struct cmd_q *);
1.1       nicm       31:
                     32: const struct cmd_entry cmd_send_keys_entry = {
                     33:        "send-keys", "send",
1.19      nicm       34:        "lRMt:", 0, -1,
                     35:        "[-lRM] " CMD_TARGET_PANE_USAGE " key ...",
1.9       nicm       36:        0,
                     37:        cmd_send_keys_exec
1.1       nicm       38: };
                     39:
1.14      nicm       40: const struct cmd_entry cmd_send_prefix_entry = {
                     41:        "send-prefix", NULL,
                     42:        "2t:", 0, 0,
                     43:        "[-2] " CMD_TARGET_PANE_USAGE,
                     44:        0,
                     45:        cmd_send_keys_exec
                     46: };
                     47:
1.12      nicm       48: enum cmd_retval
1.15      nicm       49: cmd_send_keys_exec(struct cmd *self, struct cmd_q *cmdq)
1.1       nicm       50: {
1.9       nicm       51:        struct args             *args = self->args;
1.19      nicm       52:        struct mouse_event      *m = &cmdq->item->mouse;
1.9       nicm       53:        struct window_pane      *wp;
                     54:        struct session          *s;
1.23    ! nicm       55:        int                      i, literal;
        !            56:        const u_char            *keystr;
1.22      nicm       57:        key_code                 key;
1.1       nicm       58:
1.19      nicm       59:        if (args_has(args, 'M')) {
                     60:                wp = cmd_mouse_pane(m, &s, NULL);
                     61:                if (wp == NULL) {
                     62:                        cmdq_error(cmdq, "no mouse target");
                     63:                        return (CMD_RETURN_ERROR);
                     64:                }
                     65:                window_pane_key(wp, NULL, s, m->key, m);
                     66:                return (CMD_RETURN_NORMAL);
                     67:        }
                     68:
1.15      nicm       69:        if (cmd_find_pane(cmdq, args_get(args, 't'), &s, &wp) == NULL)
1.12      nicm       70:                return (CMD_RETURN_ERROR);
1.14      nicm       71:
                     72:        if (self->entry == &cmd_send_prefix_entry) {
                     73:                if (args_has(args, '2'))
1.21      nicm       74:                        key = options_get_number(s->options, "prefix2");
1.14      nicm       75:                else
1.21      nicm       76:                        key = options_get_number(s->options, "prefix");
1.19      nicm       77:                window_pane_key(wp, NULL, s, key, NULL);
1.14      nicm       78:                return (CMD_RETURN_NORMAL);
                     79:        }
1.10      nicm       80:
1.20      nicm       81:        if (args_has(args, 'R'))
                     82:                input_reset(wp);
1.1       nicm       83:
1.9       nicm       84:        for (i = 0; i < args->argc; i++) {
1.23    ! nicm       85:                literal = args_has(args, 'l');
        !            86:                if (!literal) {
        !            87:                        key = key_string_lookup_string(args->argv[i]);
        !            88:                        if (key != KEYC_NONE && key != KEYC_UNKNOWN)
        !            89:                                window_pane_key(wp, NULL, s, key, NULL);
        !            90:                        else
        !            91:                                literal = 1;
        !            92:                }
        !            93:                if (literal) {
        !            94:                        for (keystr = args->argv[i]; *keystr != '\0'; keystr++)
        !            95:                                window_pane_key(wp, NULL, s, *keystr, NULL);
1.9       nicm       96:                }
                     97:        }
1.1       nicm       98:
1.12      nicm       99:        return (CMD_RETURN_NORMAL);
1.1       nicm      100: }