On terminals without DECSLRM, when a pane that is less than the full
authornicm <nicm@openbsd.org>
Tue, 18 Apr 2017 20:37:49 +0000 (20:37 +0000)
committernicm <nicm@openbsd.org>
Tue, 18 Apr 2017 20:37:49 +0000 (20:37 +0000)
commitaf180742a46e6ab6819c1957863d4b4df3f1d2fe
treeb146609571364232f9bc302553ae7bbf7bcd57be
parenta48fea48d884e689152ee604a4579e10ee675f9b
On terminals without DECSLRM, when a pane that is less than the full
with of the terminal scrolls, tmux needs to redraw the entire pane. This
results in a large amount of output data which can cause slow terminals
to struggle, particularly when many lines are scrolled together quickly.

This can be reduced by only redrawing when tmux doesn't hold any
buffered data for the terminal. If a redraw is required and data is
buffered, the redraw is deferred until all that data is consumed (it is
checked after every event loop, a timer is used to ensure this happens
at some point). While a redraw is pending, no additional data will be
written to the terminal.

The redraw still happens, now it is just pushed back if it is possible
it would just add more data on top of a terminal that is already
behind. This both gives the terminal a chance to catch up, and allows
tmux to process more scrolling (that would require additional redraws)
in the meantime.

Helps with a problem reported by Greg Hurrell.
usr.bin/tmux/server-client.c