aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2021-04-12 09:36:12 +0000
committernicm <nicm>2021-04-12 09:36:12 +0000
commite6abe55134df1b9dc3b7dd7f3a65dff272a35bb7 (patch)
tree6c99cf6da3a6d22ecbb9b69dfc7696e5fb31c796 /tmux.h
parentcd208c9d72df79a34024df6b8eb8f984613de8ef (diff)
downloadrtmux-e6abe55134df1b9dc3b7dd7f3a65dff272a35bb7.tar.gz
rtmux-e6abe55134df1b9dc3b7dd7f3a65dff272a35bb7.tar.bz2
rtmux-e6abe55134df1b9dc3b7dd7f3a65dff272a35bb7.zip
Add a flag to disable keys to close a message, GitHub issue 2625.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 9160ef92..fb2f35f9 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1687,6 +1687,7 @@ struct client {
uint64_t redraw_panes;
+ int message_ignore_keys;
int message_ignore_styles;
char *message_string;
struct event message_timer;
@@ -2490,7 +2491,7 @@ 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 status_message_set(struct client *, int, int, const char *, ...);
+void status_message_set(struct client *, int, int, int, const char *, ...);
void status_message_clear(struct client *);
int status_message_redraw(struct client *);
void status_prompt_set(struct client *, struct cmd_find_state *,