mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
fix(tui): Stop sending extra parameter for save/restore title
Closes #14573
This commit is contained in:
parent
c40de6e5f5
commit
0368591bb4
@ -2009,9 +2009,9 @@ static void augment_terminfo(TUIData *data, const char *term,
|
||||
}
|
||||
|
||||
data->unibi_ext.save_title = (int)unibi_add_ext_str(
|
||||
ut, "ext.save_title", "\x1b[22;0;0t");
|
||||
ut, "ext.save_title", "\x1b[22;0t");
|
||||
data->unibi_ext.restore_title = (int)unibi_add_ext_str(
|
||||
ut, "ext.restore_title", "\x1b[23;0;0t");
|
||||
ut, "ext.restore_title", "\x1b[23;0t");
|
||||
|
||||
/// Terminals usually ignore unrecognized private modes, and there is no
|
||||
/// known ambiguity with these. So we just set them unconditionally.
|
||||
|
Loading…
Reference in New Issue
Block a user