mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
Change message log to be per server rather than per client and include
every command that is run.
This commit is contained in:
2
status.c
2
status.c
@ -436,7 +436,7 @@ status_message_set(struct client *c, const char *fmt, ...)
|
||||
xvasprintf(&c->message_string, fmt, ap);
|
||||
va_end(ap);
|
||||
|
||||
server_client_add_message(c, "%s", c->message_string);
|
||||
server_add_message("%s message: %s", c->name, c->message_string);
|
||||
|
||||
delay = options_get_number(c->session->options, "display-time");
|
||||
if (delay > 0) {
|
||||
|
Reference in New Issue
Block a user