fix: apply BRIGHT_BLACK style only to "<INTERNAL>" in status mode binary column

Co-authored-by: aider (openai/andrew.openrouter.qwen.qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-07-29 13:00:45 -03:00
parent 1e00c30543
commit 471fc1b98d

View File

@@ -168,7 +168,10 @@ fn build_meta_plugin_table(enabled_meta_plugins: &Vec<MetaPluginType>) -> Table
true => Cell::new("Yes").with_style(Attr::ForegroundColor(color::GREEN)), true => Cell::new("Yes").with_style(Attr::ForegroundColor(color::GREEN)),
false => Cell::new("No"), false => Cell::new("No"),
}, },
Cell::new(&binary_display).with_style(Attr::ForegroundColor(color::BRIGHT_BLACK)), match binary_display.as_str() {
"<INTERNAL>" => Cell::new(&binary_display).with_style(Attr::ForegroundColor(color::BRIGHT_BLACK)),
_ => Cell::new(&binary_display),
},
Cell::new(&args_display), Cell::new(&args_display),
Cell::new(&meta_plugin.meta_name()), Cell::new(&meta_plugin.meta_name()),
])); ]));