mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
csi: warn when client tries to enable "highlight mouse tracking"
This commit is contained in:
parent
08eb0532ad
commit
e6d1ebbbfc
1 changed files with 8 additions and 0 deletions
8
csi.c
8
csi.c
|
|
@ -894,6 +894,10 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
term_xcursor_update(term);
|
||||
break;
|
||||
|
||||
case 1001:
|
||||
LOG_WARN("unimplemented: highlight mouse tracking");
|
||||
break;
|
||||
|
||||
case 1002:
|
||||
term->mouse_tracking = MOUSE_DRAG;
|
||||
term_xcursor_update(term);
|
||||
|
|
@ -1023,6 +1027,10 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
term->hide_cursor = true;
|
||||
break;
|
||||
|
||||
case 1001:
|
||||
/* Highlight mouse tracking */
|
||||
break;
|
||||
|
||||
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