mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
osc: ignore OSC 30 (konsole's "set tab title")
This commit is contained in:
parent
ba322c4eff
commit
812178673e
1 changed files with 7 additions and 1 deletions
8
osc.c
8
osc.c
|
|
@ -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' */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue