mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-07 04:06:07 -05:00
csi: recognize the X10 mouse tracking enabler/disabler
We still don't implement it, but now we at least recognize it and log a warning when it is implemented.
This commit is contained in:
parent
38e2e037e6
commit
dfa5cb41e0
1 changed files with 6 additions and 0 deletions
6
csi.c
6
csi.c
|
|
@ -881,6 +881,11 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
term->auto_margin = true;
|
||||
break;
|
||||
|
||||
case 9:
|
||||
LOG_WARN("unimplemented: X10 mouse tracking mode");
|
||||
/* term->mouse_tracking = MOUSE_X10; */
|
||||
break;
|
||||
|
||||
case 12:
|
||||
term_cursor_blink_enable(term);
|
||||
break;
|
||||
|
|
@ -1031,6 +1036,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
/* Highlight mouse tracking */
|
||||
break;
|
||||
|
||||
case 9: /* MOUSE_X10 */
|
||||
case 1000: /* MOUSE_NORMAL */
|
||||
case 1002: /* MOUSE_BUTTON_EVENT */
|
||||
case 1003: /* MOUSE_ANY_EVENT */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue