2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2007 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>
|
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
#include <stdlib.h>
|
2009-07-28 17:05:10 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
2019-05-25 07:18:20 +00:00
|
|
|
* Bind a key to a command.
|
2009-06-01 22:58:49 +00:00
|
|
|
*/
|
|
|
|
|
2021-08-25 08:51:55 +00:00
|
|
|
static enum args_parse_type cmd_bind_key_args_parse(struct args *, u_int,
|
|
|
|
char **);
|
|
|
|
static enum cmd_retval cmd_bind_key_exec(struct cmd *,
|
|
|
|
struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_bind_key_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "bind-key",
|
|
|
|
.alias = "bind",
|
|
|
|
|
2021-08-25 08:51:55 +00:00
|
|
|
.args = { "nrN:T:", 1, -1, cmd_bind_key_args_parse },
|
2020-01-30 08:02:25 +00:00
|
|
|
.usage = "[-nr] [-T key-table] [-N note] key "
|
2020-09-08 10:19:19 +00:00
|
|
|
"[command [arguments]]",
|
2015-12-13 21:53:57 +00:00
|
|
|
|
2016-10-14 22:14:22 +00:00
|
|
|
.flags = CMD_AFTERHOOK,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_bind_key_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2021-08-25 08:51:55 +00:00
|
|
|
static enum args_parse_type
|
2021-08-25 09:18:08 +00:00
|
|
|
cmd_bind_key_args_parse(__unused struct args *args, __unused u_int idx,
|
2021-08-25 08:51:55 +00:00
|
|
|
__unused char **cause)
|
|
|
|
{
|
2021-08-25 09:18:08 +00:00
|
|
|
return (ARGS_PARSE_COMMANDS_OR_STRING);
|
2021-08-25 08:51:55 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_bind_key_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);
|
2019-05-27 12:16:27 +00:00
|
|
|
key_code key;
|
2020-09-08 10:19:19 +00:00
|
|
|
const char *tablename, *note = args_get(args, 'N');
|
2019-05-27 12:16:27 +00:00
|
|
|
struct cmd_parse_result *pr;
|
2021-08-27 17:25:55 +00:00
|
|
|
int repeat;
|
2021-08-21 20:46:43 +00:00
|
|
|
struct args_value *value;
|
2021-08-20 19:50:16 +00:00
|
|
|
u_int count = args_count(args);
|
2013-10-10 12:00:18 +00:00
|
|
|
|
2021-08-20 19:50:16 +00:00
|
|
|
key = key_string_lookup_string(args_string(args, 0));
|
2015-12-12 18:19:00 +00:00
|
|
|
if (key == KEYC_NONE || key == KEYC_UNKNOWN) {
|
2021-08-20 19:50:16 +00:00
|
|
|
cmdq_error(item, "unknown key: %s", args_string(args, 0));
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-01-04 00:42:46 +00:00
|
|
|
}
|
|
|
|
|
2015-04-20 15:34:56 +00:00
|
|
|
if (args_has(args, 'T'))
|
|
|
|
tablename = args_get(args, 'T');
|
|
|
|
else if (args_has(args, 'n'))
|
|
|
|
tablename = "root";
|
|
|
|
else
|
|
|
|
tablename = "prefix";
|
2020-01-27 08:53:13 +00:00
|
|
|
repeat = args_has(args, 'r');
|
2015-04-20 15:34:56 +00:00
|
|
|
|
2021-08-21 20:46:43 +00:00
|
|
|
if (count == 1) {
|
2020-09-08 10:19:19 +00:00
|
|
|
key_bindings_add(tablename, key, note, repeat, NULL);
|
2021-08-21 20:46:43 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
value = args_value(args, 1);
|
|
|
|
if (count == 2 && value->type == ARGS_COMMANDS) {
|
|
|
|
key_bindings_add(tablename, key, note, repeat, value->cmdlist);
|
2021-08-23 11:48:21 +00:00
|
|
|
value->cmdlist->references++;
|
2021-08-21 20:46:43 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count == 2)
|
|
|
|
pr = cmd_parse_from_string(args_string(args, 1), NULL);
|
|
|
|
else {
|
2021-08-27 17:25:55 +00:00
|
|
|
pr = cmd_parse_from_arguments(args_values(args) + 1, count - 1,
|
|
|
|
NULL);
|
2021-08-21 20:46:43 +00:00
|
|
|
}
|
|
|
|
switch (pr->status) {
|
|
|
|
case CMD_PARSE_ERROR:
|
|
|
|
cmdq_error(item, "%s", pr->error);
|
|
|
|
free(pr->error);
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
case CMD_PARSE_SUCCESS:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
key_bindings_add(tablename, key, note, repeat, pr->cmdlist);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-07-28 17:05:10 +00:00
|
|
|
}
|