From 77b827f879e4dc296996b3f4345c38a7a57caf48 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 6 Apr 2020 17:51:34 +0000 Subject: Change copy mode to make copy of the pane history so it does not need to freeze updates (which does not play nicely with some applications, a longstanding problem) and will allow some other changes later. From Anindya Mukherjee. --- tmux.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 326f77dd..3cc46df1 100644 --- a/tmux.h +++ b/tmux.h @@ -904,7 +904,6 @@ struct window_pane { int fd; struct bufferevent *event; - u_int disabled; struct event resize_timer; @@ -925,8 +924,6 @@ struct window_pane { size_t status_size; TAILQ_HEAD (, window_mode_entry) modes; - struct event modetimer; - time_t modelast; char *searchstr; int searchregex; -- cgit