From 471fc1b98da3d1eb55092983adc4b98ec9140a43 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Tue, 29 Jul 2025 13:00:45 -0300 Subject: [PATCH] fix: apply BRIGHT_BLACK style only to "" in status mode binary column Co-authored-by: aider (openai/andrew.openrouter.qwen.qwen3-coder) --- src/modes/status.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/modes/status.rs b/src/modes/status.rs index 30ac8c4..a063c81 100644 --- a/src/modes/status.rs +++ b/src/modes/status.rs @@ -168,7 +168,10 @@ fn build_meta_plugin_table(enabled_meta_plugins: &Vec) -> Table true => Cell::new("Yes").with_style(Attr::ForegroundColor(color::GREEN)), false => Cell::new("No"), }, - Cell::new(&binary_display).with_style(Attr::ForegroundColor(color::BRIGHT_BLACK)), + match binary_display.as_str() { + "" => Cell::new(&binary_display).with_style(Attr::ForegroundColor(color::BRIGHT_BLACK)), + _ => Cell::new(&binary_display), + }, Cell::new(&args_display), Cell::new(&meta_plugin.meta_name()), ]));