| Commit message (Collapse) | Author | Age |
... | |
|
|
|
|
| |
around a dead file descriptor. Seems to fix a problem reported by Greg
Hurrell in GitHub issue 941.
|
| |
|
|
|
|
| |
entries in the palette. GitHub issue 954.
|
|
|
|
|
|
| |
unchanged, because it may have changed and changed back in the time
between us getting the signal and calling ioctl(). Always redraw when we
see SIGWINCH.
|
|
|
|
|
| |
the most reasonable of the various (some bizarre) suggestions for
capabilities.
|
|
|
|
|
|
| |
it is present and zero. This is useful for users with terminals or fonts
that do not correctly support UTF-8 line drawing characters. GitHub
issue 927, reported by Hiroaki Yamazoe and Akinori Hattori.
|
|
|
|
|
|
| |
ignores if >= size, not if > as I first thought). So we can't
effectively fix it in code - remove the workarounds which just cause
bugs on other terminals.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
column 0, some do not).
|
| |
|
| |
|
|
|
|
| |
are supported.
|
| |
|
|
|
|
|
| |
cellused (only non-space cells) because there may be cells with a
nondefault background.
|
| |
|
|
|
|
|
| |
(that don't touch an edge). Move all the tty clear code into two common
functions rather than having the same bunch of checks everywhere.
|
|
|
|
|
|
| |
itself hit the "terminal can't keep up" check. To avoid this, record how
much data we send during redraw (we know we will be starting with 0) and
skip the check until it has been flushed. GitHub issue 912.
|
|
|
|
| |
the scroll region, so clamp it. Reported by Moritz Bunkus.
|
|
|
|
|
| |
paste by avoiding explicit line wraps if we think the terminal will wrap
anyway.
|
|
|
|
| |
clear end of screen.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
reasonable amount (currently width * height * 8 bytes), discard all
output to the terminal and start trying to redraw periodically
instead. Continue with this until the amount of data we are trying to
write falls to a low level again.
This helps to prevent tmux sitting on a huge buffer of data when there
are processes with fast output running inside tmux but the outside
terminal is slow.
A new client_discarded format holds the amount of data that has been
discarded due to this mechanism.
The three variables (when to start this, when to stop, and how often to
redraw) are basically "works for me" at the moment, this is going in to
see how it goes and if it causes problems for anyone else.
|
|
|
|
| |
and there are some question marks about it's support.
|
| |
|
| |
|
|
|
|
| |
colour 8 instead.
|
| |
|
| |
|
|
|
|
| |
spaces.
|
|
|
|
|
|
|
| |
falls back to an alternative if the tty name is not available. This is
clearer than overloading the client ttyname member and allows us to
remove the path stored in the tty struct, it should always be the same
as the client.
|
| |
|
|
|
|
|
| |
terminfo capability. This means there are now nine attribute bits, so
anything above 0xff uses an extended cell.
|
| |
|
|
|
|
|
|
|
| |
printing cells if it is already at the very end of the line and the
terminal will wrap it to the next line itself, this means terminals
still see it as a wrapped line for the purposes of their own mouse
selection. Reported by millert@.
|
|
|
|
| |
are the keys when it is on.
|
| |
|
| |
|
|
|
|
| |
after CSR, so invalidate the cursor position rather than assuming 0,0.
|
| |
|
| |
|
|
|
|
|
|
| |
is being written and when.
Also a manpage typo fix from jmc@.
|
| |
|
|
|
|
| |
already an absolute position.
|
|
|
|
| |
possible instead of sending individual line feeds.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
together instead of handling them one by one. This is significantly
faster. Sequences are terminated when we reach the end of the line, fill
the internal buffer, or a different character is seen by the input
parser (an escape sequence, or UTF-8).
Rather than writing collected sequences out immediately, hold them until
it is necessary (another screen modification, or we consume all
available data). This means we can discard changes that would have no
effect (for example, lines that would just be scrolled off the screen or
cleared). This reduces the total amount of data we write out to the
terminal - not important for fast terminals, but a big help with slow
(like xterm).
|
| |
|
| |
|
| |
|