From 2627ab322e0e8dffbf86b1c2eb969139a8062174 Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 2 Sep 2016 20:57:20 +0000 Subject: Remember the number of lines scrolled into the history (versus cleared into the history) and when resizing only use scrolled lines and not cleared lines (which are probably not intended to reappear). From Chaoren Lin. --- tmux.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index f9ce0309..d1879e54 100644 --- a/tmux.h +++ b/tmux.h @@ -691,6 +691,7 @@ struct grid { u_int sx; u_int sy; + u_int hscrolled; u_int hsize; u_int hlimit; -- cgit