mirror of
				https://github.com/sharkdp/bat.git
				synced 2025-11-04 09:01:56 +00:00 
			
		
		
		
	Added bold to theme titles
This commit is contained in:
		@@ -34,6 +34,7 @@ use std::process;
 | 
			
		||||
use std::collections::HashSet;
 | 
			
		||||
 | 
			
		||||
use ansi_term::Colour::Green;
 | 
			
		||||
use ansi_term::Style;
 | 
			
		||||
 | 
			
		||||
use app::{App, Config};
 | 
			
		||||
use assets::{clear_assets, config_dir, HighlightingAssets};
 | 
			
		||||
@@ -137,7 +138,7 @@ pub fn list_themes(assets: &HighlightingAssets, config: &mut Config) {
 | 
			
		||||
    config.files = vec![Some("assets/theme_preview.rs")];
 | 
			
		||||
    config.output_components = OutputComponents(style);
 | 
			
		||||
    for (theme, _) in themes.iter() {
 | 
			
		||||
        println!("{}\n", theme);
 | 
			
		||||
        println!("{}\n", Style::new().bold().paint(theme));
 | 
			
		||||
        config.theme = theme.to_string();
 | 
			
		||||
        let _controller = Controller::new(&config, &assets).run();
 | 
			
		||||
        println!("--------------------------------\n");
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user