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:
@@ -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()),
|
||||||
]));
|
]));
|
||||||
|
|||||||
Reference in New Issue
Block a user