diff options
author | nicm <nicm> | 2020-07-06 07:27:39 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-07-06 07:27:39 +0000 |
commit | 2bf612a8066ab75725eeb09adf1ebc0f4fe851ab (patch) | |
tree | 8b9d3578dbff972938231c91051694133e1b0957 /cmd-list-keys.c | |
parent | 1e426896611f81dd6306263cb337e7ea7d80238e (diff) | |
download | rtmux-2bf612a8066ab75725eeb09adf1ebc0f4fe851ab.tar.gz rtmux-2bf612a8066ab75725eeb09adf1ebc0f4fe851ab.tar.bz2 rtmux-2bf612a8066ab75725eeb09adf1ebc0f4fe851ab.zip |
Always send xterm-style keys for M-Left and M-Right. GitHub issue 2296.
Diffstat (limited to 'cmd-list-keys.c')
-rw-r--r-- | cmd-list-keys.c | 1 |
1 files changed, 1 insertions, 0 deletions
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'); |