mirror of
https://github.com/tmux/tmux.git
synced 2024-10-31 22:58:49 +00:00
bded743706
keys. The default key bindings become the "prefix" table and -n the "root" table. Keys may be bound in new tables with bind -T and switch-client -T used to specify the table in which the next key should be looked up. Based on a diff from Keith Amling.
194 lines
4.8 KiB
C
194 lines
4.8 KiB
C
/* $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>
|
|
|
|
#include <string.h>
|
|
|
|
#include "tmux.h"
|
|
|
|
/*
|
|
* List key bindings.
|
|
*/
|
|
|
|
enum cmd_retval cmd_list_keys_exec(struct cmd *, struct cmd_q *);
|
|
|
|
enum cmd_retval cmd_list_keys_table(struct cmd *, struct cmd_q *);
|
|
enum cmd_retval cmd_list_keys_commands(struct cmd *, struct cmd_q *);
|
|
|
|
const struct cmd_entry cmd_list_keys_entry = {
|
|
"list-keys", "lsk",
|
|
"t:T:", 0, 0,
|
|
"[-t mode-table] [-T key-table]",
|
|
0,
|
|
cmd_list_keys_exec
|
|
};
|
|
|
|
const struct cmd_entry cmd_list_commands_entry = {
|
|
"list-commands", "lscm",
|
|
"", 0, 0,
|
|
"",
|
|
0,
|
|
cmd_list_keys_exec
|
|
};
|
|
|
|
enum cmd_retval
|
|
cmd_list_keys_exec(struct cmd *self, struct cmd_q *cmdq)
|
|
{
|
|
struct args *args = self->args;
|
|
struct key_table *table;
|
|
struct key_binding *bd;
|
|
const char *key, *tablename, *r;
|
|
char tmp[BUFSIZ];
|
|
size_t used;
|
|
int repeat, width, tablewidth, keywidth;
|
|
|
|
if (self->entry == &cmd_list_commands_entry)
|
|
return (cmd_list_keys_commands(self, cmdq));
|
|
|
|
if (args_has(args, 't'))
|
|
return (cmd_list_keys_table(self, cmdq));
|
|
|
|
tablename = args_get(args, 'T');
|
|
if (tablename != NULL && key_bindings_get_table(tablename, 0) == NULL) {
|
|
cmdq_error(cmdq, "table %s doesn't exist", tablename);
|
|
return (CMD_RETURN_ERROR);
|
|
}
|
|
|
|
repeat = 0;
|
|
tablewidth = keywidth = 0;
|
|
RB_FOREACH(table, key_tables, &key_tables) {
|
|
if (tablename != NULL && strcmp(table->name, tablename) != 0)
|
|
continue;
|
|
RB_FOREACH(bd, key_bindings, &table->key_bindings) {
|
|
key = key_string_lookup_key(bd->key);
|
|
if (key == NULL)
|
|
continue;
|
|
|
|
if (bd->can_repeat)
|
|
repeat = 1;
|
|
|
|
width = strlen(table->name);
|
|
if (width > tablewidth)
|
|
tablewidth =width;
|
|
width = strlen(key);
|
|
if (width > keywidth)
|
|
keywidth = width;
|
|
}
|
|
}
|
|
|
|
RB_FOREACH(table, key_tables, &key_tables) {
|
|
if (tablename != NULL && strcmp(table->name, tablename) != 0)
|
|
continue;
|
|
RB_FOREACH(bd, key_bindings, &table->key_bindings) {
|
|
key = key_string_lookup_key(bd->key);
|
|
if (key == NULL)
|
|
continue;
|
|
|
|
if (!repeat)
|
|
r = "";
|
|
else if (bd->can_repeat)
|
|
r = "-r ";
|
|
else
|
|
r = " ";
|
|
used = xsnprintf(tmp, sizeof tmp, "%s-T %-*s %-*s ", r,
|
|
(int)tablewidth, table->name, (int)keywidth, key);
|
|
if (used < sizeof tmp) {
|
|
cmd_list_print(bd->cmdlist, tmp + used,
|
|
(sizeof tmp) - used);
|
|
}
|
|
|
|
cmdq_print(cmdq, "bind-key %s", tmp);
|
|
}
|
|
}
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
}
|
|
|
|
enum cmd_retval
|
|
cmd_list_keys_table(struct cmd *self, struct cmd_q *cmdq)
|
|
{
|
|
struct args *args = self->args;
|
|
const char *tablename;
|
|
const struct mode_key_table *mtab;
|
|
struct mode_key_binding *mbind;
|
|
const char *key, *cmdstr, *mode;
|
|
int width, keywidth, any_mode;
|
|
|
|
tablename = args_get(args, 't');
|
|
if ((mtab = mode_key_findtable(tablename)) == NULL) {
|
|
cmdq_error(cmdq, "unknown key table: %s", tablename);
|
|
return (CMD_RETURN_ERROR);
|
|
}
|
|
|
|
width = 0;
|
|
any_mode = 0;
|
|
RB_FOREACH(mbind, mode_key_tree, mtab->tree) {
|
|
key = key_string_lookup_key(mbind->key);
|
|
if (key == NULL)
|
|
continue;
|
|
|
|
if (mbind->mode != 0)
|
|
any_mode = 1;
|
|
|
|
keywidth = strlen(key);
|
|
if (keywidth > width)
|
|
width = keywidth;
|
|
}
|
|
|
|
RB_FOREACH(mbind, mode_key_tree, mtab->tree) {
|
|
key = key_string_lookup_key(mbind->key);
|
|
if (key == NULL)
|
|
continue;
|
|
|
|
mode = "";
|
|
if (mbind->mode != 0)
|
|
mode = "c";
|
|
cmdstr = mode_key_tostring(mtab->cmdstr, mbind->cmd);
|
|
if (cmdstr != NULL) {
|
|
cmdq_print(cmdq, "bind-key -%st %s%s %*s %s%s%s%s",
|
|
mode, any_mode && *mode == '\0' ? " " : "",
|
|
mtab->name, (int) width, key, cmdstr,
|
|
mbind->arg != NULL ? " \"" : "",
|
|
mbind->arg != NULL ? mbind->arg : "",
|
|
mbind->arg != NULL ? "\"": "");
|
|
}
|
|
}
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
}
|
|
|
|
enum cmd_retval
|
|
cmd_list_keys_commands(unused struct cmd *self, struct cmd_q *cmdq)
|
|
{
|
|
const struct cmd_entry **entryp;
|
|
const struct cmd_entry *entry;
|
|
|
|
for (entryp = cmd_table; *entryp != NULL; entryp++) {
|
|
entry = *entryp;
|
|
if (entry->alias == NULL) {
|
|
cmdq_print(cmdq, "%s %s", entry->name, entry->usage);
|
|
continue;
|
|
}
|
|
cmdq_print(cmdq, "%s (%s) %s", entry->name, entry->alias,
|
|
entry->usage);
|
|
}
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
}
|