diff options
author | nicm <nicm> | 2016-09-02 20:57:20 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-09-02 20:57:20 +0000 |
commit | 2627ab322e0e8dffbf86b1c2eb969139a8062174 (patch) | |
tree | 15cc4f5210c0145ef14433470ba0c96c0860c6ea /tmux.h | |
parent | 537964b92dcd2b4a30fdf37a370f9a204fff561c (diff) | |
download | rtmux-2627ab322e0e8dffbf86b1c2eb969139a8062174.tar.gz rtmux-2627ab322e0e8dffbf86b1c2eb969139a8062174.tar.bz2 rtmux-2627ab322e0e8dffbf86b1c2eb969139a8062174.zip |
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.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -691,6 +691,7 @@ struct grid { u_int sx; u_int sy; + u_int hscrolled; u_int hsize; u_int hlimit; |