mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-24 16:53:55 +01:00
terminal title is only set if user opts in with --set_terminal_title flag
This commit is contained in:
parent
9239b125b1
commit
b33e33fe26
@ -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…
Reference in New Issue
Block a user