fix: apply BRIGHT_BLACK style to <INTERNAL> in meta plugin table

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

View File

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