mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05: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;
|
||||
}
|
||||
|
||||
case 's':
|
||||
case 'r':
|
||||
/* ??? */
|
||||
/* Seen with ncmpcpp */
|
||||
LOG_WARN("unimplemented: CSI ?%c", final);
|
||||
break;
|
||||
|
||||
default:
|
||||
LOG_ERR("CSI: intermediate '?': unimplemented final: %c", final);
|
||||
abort();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue