Add support for overline (SGR 53), from Ricardo Banffy.

This commit is contained in:
nicm
2019-05-13 20:10:23 +00:00
parent 1b0512aa7e
commit 1ee944a19d
7 changed files with 20 additions and 3 deletions

View File

@ -2070,6 +2070,12 @@ input_csi_dispatch_sgr(struct input_ctx *ictx)
case 49:
gc->bg = 8;
break;
case 53:
gc->attr |= GRID_ATTR_OVERLINE;
break;
case 55:
gc->attr &= ~GRID_ATTR_OVERLINE;
break;
case 90:
case 91:
case 92: