Pass active terminal title through to terminal emulator (#980)

This commit is contained in:
Kunal Mohan 2022-01-03 22:18:22 +05:30 committed by GitHub
parent 04fe184713
commit 4496c4d4dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,8 +2,8 @@ use crate::ui::boundaries::boundary_type;
use crate::ClientId;
use ansi_term::Colour::{Fixed, RGB};
use ansi_term::Style;
use zellij_utils::pane_size::Viewport;
use zellij_utils::zellij_tile::prelude::{client_id_to_colors, Palette, PaletteColor};
use zellij_utils::{envs::get_session_name, pane_size::Viewport};
use unicode_width::{UnicodeWidthChar, UnicodeWidthStr};
@ -561,6 +561,15 @@ impl PaneFrame {
.unwrap(); // goto row/col + boundary character
}
}
if self.is_main_client {
write!(
&mut vte_output,
"\u{1b}]0;Zellij ({}) - {}",
get_session_name().unwrap(),
self.title
)
.unwrap();
}
vte_output
}
}