From c484c5a2a1b6c8261564b2959866e2cfa061ca99 Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 12 Oct 2016 14:50:14 +0000 Subject: Drop the edit mode key tables and just use fixed key bindings for the command prompt. --- cmd-unbind-key.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'cmd-unbind-key.c') diff --git a/cmd-unbind-key.c b/cmd-unbind-key.c index 00c7779b..644a4c3a 100644 --- a/cmd-unbind-key.c +++ b/cmd-unbind-key.c @@ -34,8 +34,8 @@ const struct cmd_entry cmd_unbind_key_entry = { .name = "unbind-key", .alias = "unbind", - .args = { "acnt:T:", 0, 1 }, - .usage = "[-acn] [-t mode-table] [-T key-table] key", + .args = { "ant:T:", 0, 1 }, + .usage = "[-an] [-t mode-table] [-T key-table] key", .flags = 0, .exec = cmd_unbind_key_exec @@ -122,7 +122,6 @@ cmd_unbind_key_mode_table(struct cmd *self, struct cmd_q *cmdq, key_code key) } mtmp.key = key; - mtmp.mode = !!args_has(args, 'c'); if ((mbind = RB_FIND(mode_key_tree, mtab->tree, &mtmp)) != NULL) { RB_REMOVE(mode_key_tree, mtab->tree, mbind); free(mbind); -- cgit