terminal title is only set if user opts in with --set_terminal_title flag

pull/2807/head
Oliver looney 4 months ago
parent 9239b125b1
commit b33e33fe26
No known key found for this signature in database

@ -251,7 +251,7 @@ fn get_new_terminal_title(inputs: &Vec<Input>) -> String {
fn run_controller(inputs: Vec<Input>, config: &Config, cache_dir: &Path) -> Result<bool> {
let assets = assets_from_cache_or_binary(config.use_custom_assets, cache_dir)?;
let controller = Controller::new(config, &assets);
if config.paging_mode != PagingMode::Never {
if config.paging_mode != PagingMode::Never && config.set_terminal_title {
set_terminal_title_to(get_new_terminal_title(&inputs));
}
controller.run(inputs, None)

Loading…
Cancel
Save