Include modifiers when looking up an individual key.

pull/2648/head
nicm 2021-04-13 16:00:47 +00:00
parent bbb3509bc5
commit dfcc9f8cbc
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,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;
only &= (KEYC_MASK_KEY|KEYC_MASK_MODIFIERS);
}
tablename = args_get(args, 'T');