csi: recognize ?1005 and ?1015 private CSIs

This commit is contained in:
Daniel Eklöf 2019-07-03 16:00:06 +02:00
parent f4c3343382
commit 43045a98e2
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

16
csi.c
View file

@ -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;