Store time lines are scrolled into history and display in copy mode.

This commit is contained in:
nicm
2022-06-21 09:30:01 +00:00
parent a888ce9963
commit 9c89f7c2af
5 changed files with 37 additions and 18 deletions

View File

@ -55,6 +55,8 @@ struct cmd_find_state marked_pane;
static u_int message_next;
struct message_list message_log;
time_t current_time;
static int server_loop(void);
static void server_send_exit(void);
static void server_accept(int, short, void *);
@ -257,6 +259,8 @@ server_loop(void)
struct client *c;
u_int items;
current_time = time (NULL);
do {
items = cmdq_next(NULL);
TAILQ_FOREACH(c, &clients, entry) {