diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-11 09:18:00 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-11 09:18:35 +0100 |
commit | c489bf0a1e5d1ef7dfd886a95b638fa7bfa1fbe2 (patch) | |
tree | 668a4e9a80fdfa92bc99bcaa08faa9826fac328f /tmux.h | |
parent | 8502517d302363cf0d18c4aedf80a2761db24c1c (diff) | |
download | rtmux-c489bf0a1e5d1ef7dfd886a95b638fa7bfa1fbe2.tar.gz rtmux-c489bf0a1e5d1ef7dfd886a95b638fa7bfa1fbe2.tar.bz2 rtmux-c489bf0a1e5d1ef7dfd886a95b638fa7bfa1fbe2.zip |
Support embedded styles in the display-message message, GitHub issue 2206.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1607,6 +1607,7 @@ struct client { uint64_t redraw_panes; + int message_ignore_styles; char *message_string; struct event message_timer; @@ -2354,7 +2355,8 @@ struct style_range *status_get_range(struct client *, u_int, u_int); void status_init(struct client *); void status_free(struct client *); int status_redraw(struct client *); -void printflike(2, 3) status_message_set(struct client *, const char *, ...); +void printflike(3, 4) status_message_set(struct client *, int, const char *, + ...); void status_message_clear(struct client *); int status_message_redraw(struct client *); void status_prompt_set(struct client *, const char *, const char *, |