diff options
author | nicm <nicm> | 2020-05-16 15:54:20 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-05-16 15:54:20 +0000 |
commit | 472d77fd0f4af8431267473df3cf109030760fa1 (patch) | |
tree | 530d3b42bf1409311fe085b3d9904108189a328f /cmd-list-keys.c | |
parent | 6ea6d46d0a1b206ece54a05af4f3fe7a3d6fe4cc (diff) | |
download | rtmux-472d77fd0f4af8431267473df3cf109030760fa1.tar.gz rtmux-472d77fd0f4af8431267473df3cf109030760fa1.tar.bz2 rtmux-472d77fd0f4af8431267473df3cf109030760fa1.zip |
Support embedded styles in the display-message message, GitHub issue
2206.
Diffstat (limited to 'cmd-list-keys.c')
-rw-r--r-- | cmd-list-keys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-list-keys.c b/cmd-list-keys.c index 1141bbb5..4e7ba39c 100644 --- a/cmd-list-keys.c +++ b/cmd-list-keys.c @@ -112,7 +112,7 @@ cmd_list_keys_print_notes(struct cmdq_item *item, struct args *args, note = xstrdup(bd->note); tmp = utf8_padcstr(key, keywidth + 1); if (args_has(args, '1') && tc != NULL) - status_message_set(tc, "%s%s%s", prefix, tmp, note); + status_message_set(tc, 1, "%s%s%s", prefix, tmp, note); else cmdq_print(item, "%s%s%s", prefix, tmp, note); free(tmp); |