osc: ignore OSC 30 (konsole's "set tab title")

This commit is contained in:
Daniel Eklöf 2019-07-23 17:55:25 +02:00
parent ba322c4eff
commit 812178673e
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

8
osc.c
View file

@ -257,7 +257,13 @@ osc_dispatch(struct terminal *term)
case 0: term_set_window_title(term, string); break; /* icon + title */
case 1: break; /* icon */
case 2: term_set_window_title(term, string); break; /* title */
case 52: osc_selection(term, string); break;
case 30: /* Set tab title */
break;
case 52: /* Copy to/from clipboard/primary */
osc_selection(term, string);
break;
case 104: /* Reset Color Number 'c' */
case 105: /* Reset Special Color Number 'c' */