mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-09 10:06:20 -05:00
csi: recognize ?1005 and ?1015 private CSIs
This commit is contained in:
parent
f4c3343382
commit
43045a98e2
1 changed files with 16 additions and 0 deletions
16
csi.c
16
csi.c
|
|
@ -604,10 +604,18 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
LOG_WARN("unimplemented: report cell mouse motion");
|
||||
break;
|
||||
|
||||
case 1005:
|
||||
LOG_WARN("unimplemented: UTF-8 mouse");
|
||||
break;
|
||||
|
||||
case 1006:
|
||||
LOG_WARN("unimplemented: SGR mouse");
|
||||
break;
|
||||
|
||||
case 1015:
|
||||
LOG_WARN("unimplemented: URXVT mosue");
|
||||
break;
|
||||
|
||||
case 1049:
|
||||
if (term->grid != &term->alt) {
|
||||
term->grid = &term->alt;
|
||||
|
|
@ -666,10 +674,18 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
LOG_WARN("unimplemented: report cell mouse motion");
|
||||
break;
|
||||
|
||||
case 1005:
|
||||
LOG_WARN("unimplemented: UTF-8 mouse");
|
||||
break;
|
||||
|
||||
case 1006:
|
||||
LOG_WARN("unimplemented: SGR mouse");
|
||||
break;
|
||||
|
||||
case 1015:
|
||||
LOG_WARN("unimplemented: URXVT mosue");
|
||||
break;
|
||||
|
||||
case 1049:
|
||||
if (term->grid == &term->alt) {
|
||||
term->grid = &term->normal;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue