mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-27 01:40:16 -05:00
render: implement cursor styles 'bar' and 'underline'
This commit is contained in:
parent
10be7c37ba
commit
ed5df194b8
2 changed files with 94 additions and 49 deletions
2
csi.c
2
csi.c
|
|
@ -937,13 +937,11 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
case 3: /* blinking underline */
|
||||
case 4: /* steady underline */
|
||||
term->cursor_style = CURSOR_UNDERLINE;
|
||||
LOG_WARN("unimplemented: cursor style: underline");
|
||||
break;
|
||||
|
||||
case 5: /* blinking bar */
|
||||
case 6: /* steady bar */
|
||||
term->cursor_style = CURSOR_BAR;
|
||||
LOG_WARN("unimplemented: cursor style: bar");
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue