2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Bind a key to a command, this recurses through cmd_*.
|
|
|
|
*/
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
enum cmd_retval cmd_bind_key_exec(struct cmd *, struct cmd_q *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2014-05-14 06:45:35 +00:00
|
|
|
enum cmd_retval cmd_bind_key_mode_table(struct cmd *, struct cmd_q *, int);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_bind_key_entry = {
|
|
|
|
"bind-key", "bind",
|
2015-04-20 15:34:56 +00:00
|
|
|
"cnrt:T:", 1, -1,
|
|
|
|
"[-cnr] [-t mode-table] [-T key-table] key command [arguments]",
|
2011-01-04 00:42:46 +00:00
|
|
|
0,
|
|
|
|
cmd_bind_key_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_bind_key_exec(struct cmd *self, struct cmd_q *cmdq)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
char *cause;
|
|
|
|
struct cmd_list *cmdlist;
|
|
|
|
int key;
|
2015-04-20 15:34:56 +00:00
|
|
|
const char *tablename;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2013-10-10 12:00:18 +00:00
|
|
|
if (args_has(args, 't')) {
|
|
|
|
if (args->argc != 2 && args->argc != 3) {
|
|
|
|
cmdq_error(cmdq, "not enough arguments");
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (args->argc < 2) {
|
|
|
|
cmdq_error(cmdq, "not enough arguments");
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
key = key_string_lookup_string(args->argv[0]);
|
|
|
|
if (key == KEYC_NONE) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "unknown key: %s", args->argv[0]);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-01-04 00:42:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (args_has(args, 't'))
|
2014-05-14 06:45:35 +00:00
|
|
|
return (cmd_bind_key_mode_table(self, cmdq, key));
|
2009-06-01 22:58:49 +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";
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdlist = cmd_list_parse(args->argc - 1, args->argv + 1, NULL, 0,
|
|
|
|
&cause);
|
2011-01-04 00:42:46 +00:00
|
|
|
if (cmdlist == NULL) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "%s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-01-04 00:42:46 +00:00
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-04-20 15:34:56 +00:00
|
|
|
key_bindings_add(tablename, key, args_has(args, 'r'), cmdlist);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2014-05-14 06:45:35 +00:00
|
|
|
cmd_bind_key_mode_table(struct cmd *self, struct cmd_q *cmdq, int key)
|
2009-07-28 17:05:10 +00:00
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
const char *tablename;
|
2009-07-28 17:05:10 +00:00
|
|
|
const struct mode_key_table *mtab;
|
|
|
|
struct mode_key_binding *mbind, mtmp;
|
|
|
|
enum mode_key_cmd cmd;
|
2013-03-22 15:52:40 +00:00
|
|
|
const char *arg;
|
2009-07-28 17:05:10 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
tablename = args_get(args, 't');
|
|
|
|
if ((mtab = mode_key_findtable(tablename)) == NULL) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "unknown key table: %s", tablename);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-07-28 17:05:10 +00:00
|
|
|
}
|
|
|
|
|
2011-01-15 20:14:41 +00:00
|
|
|
cmd = mode_key_fromstring(mtab->cmdstr, args->argv[1]);
|
2009-07-28 17:05:10 +00:00
|
|
|
if (cmd == MODEKEY_NONE) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "unknown command: %s", args->argv[1]);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-07-28 17:05:10 +00:00
|
|
|
}
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2015-04-10 16:00:08 +00:00
|
|
|
switch (cmd) {
|
|
|
|
case MODEKEYCOPY_APPENDSELECTION:
|
|
|
|
case MODEKEYCOPY_COPYSELECTION:
|
|
|
|
case MODEKEYCOPY_STARTNAMEDBUFFER:
|
|
|
|
if (args->argc == 2)
|
|
|
|
arg = NULL;
|
|
|
|
else {
|
|
|
|
arg = args->argv[2];
|
|
|
|
if (strcmp(arg, "-x") != 0) {
|
|
|
|
cmdq_error(cmdq, "unknown argument");
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
2013-03-22 15:52:40 +00:00
|
|
|
}
|
2015-04-10 16:00:08 +00:00
|
|
|
break;
|
|
|
|
case MODEKEYCOPY_COPYPIPE:
|
2013-03-22 15:52:40 +00:00
|
|
|
if (args->argc != 3) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "no argument given");
|
2013-03-22 15:52:40 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
arg = args->argv[2];
|
2015-04-10 16:00:08 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (args->argc != 2) {
|
|
|
|
cmdq_error(cmdq, "no argument allowed");
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
arg = NULL;
|
|
|
|
break;
|
2013-03-22 15:52:40 +00:00
|
|
|
}
|
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
mtmp.key = key;
|
|
|
|
mtmp.mode = !!args_has(args, 'c');
|
2013-03-22 15:52:40 +00:00
|
|
|
if ((mbind = RB_FIND(mode_key_tree, mtab->tree, &mtmp)) == NULL) {
|
|
|
|
mbind = xmalloc(sizeof *mbind);
|
|
|
|
mbind->key = mtmp.key;
|
|
|
|
mbind->mode = mtmp.mode;
|
|
|
|
RB_INSERT(mode_key_tree, mtab->tree, mbind);
|
2009-07-28 17:05:10 +00:00
|
|
|
}
|
|
|
|
mbind->cmd = cmd;
|
2013-03-22 15:52:40 +00:00
|
|
|
mbind->arg = arg != NULL ? xstrdup(arg) : NULL;
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-07-28 17:05:10 +00:00
|
|
|
}
|