feat: add default options to status table display

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-27 17:27:37 -03:00
parent 19848fd379
commit d6906e5ed9

View File

@@ -189,8 +189,9 @@ fn build_meta_plugins_configured_table(settings: &config::Settings) -> Option<Ta
None, None,
); );
// Merge default options with the configured options // Start with the default options
let mut all_options = default_plugin.options().clone(); let mut all_options = default_plugin.options().clone();
// Merge with the configured options
for (key, value) in &effective_options { for (key, value) in &effective_options {
all_options.insert(key.clone(), value.clone()); all_options.insert(key.clone(), value.clone());
} }