From 6cdaa4fd0a60b6b1d6cc4a9464dcc720533e644f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 1 Jan 2022 13:58:42 +0100 Subject: [PATCH] osc: implement OSC-22 - set xcursor pointer --- osc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/osc.c b/osc.c index 7144e111..1167aedc 100644 --- a/osc.c +++ b/osc.c @@ -744,6 +744,10 @@ osc_dispatch(struct terminal *term) term_damage_cursor(term); break; + case 22: /* Set mouse cursor */ + term_set_user_mouse_cursor(term, string); + break; + case 30: /* Set tab title */ break;