mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-21 05:33:45 -04:00
csi: add unknown private escapes 's' and 'r', seen with ncmpcpp
This commit is contained in:
parent
43045a98e2
commit
b5dccf2883
1 changed files with 7 additions and 0 deletions
7
csi.c
7
csi.c
|
|
@ -714,6 +714,13 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case 's':
|
||||||
|
case 'r':
|
||||||
|
/* ??? */
|
||||||
|
/* Seen with ncmpcpp */
|
||||||
|
LOG_WARN("unimplemented: CSI ?%c", final);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
LOG_ERR("CSI: intermediate '?': unimplemented final: %c", final);
|
LOG_ERR("CSI: intermediate '?': unimplemented final: %c", final);
|
||||||
abort();
|
abort();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue