mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
Add support for overline (SGR 53), from Ricardo Banffy.
This commit is contained in:
2
tty.c
2
tty.c
@ -2199,6 +2199,8 @@ tty_attributes(struct tty *tty, const struct grid_cell *gc,
|
||||
tty_putcode(tty, TTYC_INVIS);
|
||||
if (changed & GRID_ATTR_STRIKETHROUGH)
|
||||
tty_putcode(tty, TTYC_SMXX);
|
||||
if (changed & GRID_ATTR_OVERLINE)
|
||||
tty_putcode(tty, TTYC_SMOL);
|
||||
if ((changed & GRID_ATTR_CHARSET) && tty_acs_needed(tty))
|
||||
tty_putcode(tty, TTYC_SMACS);
|
||||
}
|
||||
|
Reference in New Issue
Block a user