From 2bf612a8066ab75725eeb09adf1ebc0f4fe851ab Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 6 Jul 2020 07:27:39 +0000 Subject: Always send xterm-style keys for M-Left and M-Right. GitHub issue 2296. --- cmd-list-keys.c | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd-list-keys.c') diff --git a/cmd-list-keys.c b/cmd-list-keys.c index 51c90dfe..b3bdbd12 100644 --- a/cmd-list-keys.c +++ b/cmd-list-keys.c @@ -164,6 +164,7 @@ cmd_list_keys_exec(struct cmd *self, struct cmdq_item *item) cmdq_error(item, "invalid key: %s", args->argv[0]); return (CMD_RETURN_ERROR); } + only &= KEYC_MASK_KEY; } tablename = args_get(args, 'T'); -- cgit