mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-04 01:40:21 -05:00
main: Support overline, SGR 53/55
Similar to the underline, incl. the *-thickness and *-offset options.
This commit is contained in:
parent
42e04c5c87
commit
33106514db
7 changed files with 70 additions and 2 deletions
3
csi.c
3
csi.c
|
|
@ -150,6 +150,9 @@ csi_sgr(struct terminal *term)
|
|||
case 28: term->vt.attrs.conceal = false; break;
|
||||
case 29: term->vt.attrs.strikethrough = false; break;
|
||||
|
||||
case 53: term->vt.attrs.overline = true; break;
|
||||
case 55: term->vt.attrs.overline = false; break;
|
||||
|
||||
/* Regular foreground colors */
|
||||
case 30:
|
||||
case 31:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue