1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 03:12:25 +01:00

Changed preview code

This commit is contained in:
ms2300
2018-08-27 14:17:17 -06:00
committed by David Peter
parent 38544ed735
commit 4ea3e6bbb7
3 changed files with 8 additions and 8 deletions

View File

@@ -134,12 +134,13 @@ pub fn list_themes(assets: &HighlightingAssets, config: &mut Config) {
let themes = &assets.theme_set.themes;
let mut style = HashSet::new();
style.insert(OutputComponent::Plain);
config.files = vec![Some("assets/hello.rs")];
config.files = vec![Some("assets/theme_preview.rs")];
config.output_components = OutputComponents(style);
for (theme, _) in themes.iter() {
println!("{}", theme);
println!("{}\n", theme);
config.theme = theme.to_string();
let _controller = Controller::new(&config, &assets).run();
println!("--------------------------------\n");
}
}