From 2af7be1b65d58dda215b95a6e3f0eb35509e37fa Mon Sep 17 00:00:00 2001 From: abhinavcool42 Date: Sun, 2 Nov 2025 11:51:00 +0530 Subject: [PATCH] fix prefix --- src/bin/bat/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/bat/main.rs b/src/bin/bat/main.rs index 9b1b4ea0..69b12507 100644 --- a/src/bin/bat/main.rs +++ b/src/bin/bat/main.rs @@ -223,7 +223,7 @@ pub fn list_themes( if config.colored_output { handle.write_fmt(format_args!( - "Theme: {}\n\n", + "{}{default_theme_info}\n\n", Style::new().bold().paint(theme.to_string()), ))?; config.theme = theme.to_string();