mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
csi: recognize, but do nothing, for civis, cvvis
This commit is contained in:
parent
ec9b343550
commit
7cc9be01f4
1 changed files with 16 additions and 0 deletions
16
csi.c
16
csi.c
|
|
@ -463,6 +463,14 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
term->decckm = DECCKM_SS3;
|
||||
break;
|
||||
|
||||
case 12:
|
||||
LOG_WARN("unimplemented: cursor blinking");
|
||||
break;
|
||||
|
||||
case 25:
|
||||
LOG_WARN("unimplemented: civis");
|
||||
break;
|
||||
|
||||
case 1049:
|
||||
if (term->grid.cells != term->grid.alt_grid) {
|
||||
term->grid.cells = term->grid.alt_grid;
|
||||
|
|
@ -496,6 +504,14 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
term->decckm = DECCKM_CSI;
|
||||
break;
|
||||
|
||||
case 12:
|
||||
LOG_WARN("unimplemented: cursor blinking");
|
||||
break;
|
||||
|
||||
case 25:
|
||||
LOG_WARN("unimplemented: civis");
|
||||
break;
|
||||
|
||||
case 1049:
|
||||
if (term->grid.cells == term->grid.alt_grid) {
|
||||
term->grid.cells = term->grid.normal_grid;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue