From 90323ab6b12e09e4cfd5dd31efa8852ea44d1617 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 27 Aug 2025 16:34:59 -0300 Subject: [PATCH] refactor: remove enabled column and rename meta plugins table Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/modes/status.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/modes/status.rs b/src/modes/status.rs index ae808ab..9dbcfed 100644 --- a/src/modes/status.rs +++ b/src/modes/status.rs @@ -241,7 +241,6 @@ fn build_meta_plugin_table(meta_plugin_info: &Vec) -> Table { meta_plugin_table.set_titles(row!( b->"Meta Name", b->"Found", - b->"Enabled", b->"Binary", b->"Args", b->"Outputs")); @@ -261,10 +260,6 @@ fn build_meta_plugin_table(meta_plugin_info: &Vec) -> Table { true => Cell::new("Yes").with_style(Attr::ForegroundColor(color::GREEN)), false => Cell::new("No").with_style(Attr::ForegroundColor(color::RED)), }, - match info.enabled { - true => Cell::new("Yes").with_style(Attr::ForegroundColor(color::GREEN)), - false => Cell::new("No"), - }, match info.binary.as_str() { "" => Cell::new(&info.binary).with_style(Attr::ForegroundColor(color::BRIGHT_BLACK)), "" => Cell::new(&info.binary).with_style(Attr::ForegroundColor(color::RED)), @@ -319,7 +314,7 @@ pub fn mode_status( println!("COMPRESSION:"); build_compression_table(&status_info.compression).printstd(); println!(); - println!("META PLUGINS:"); + println!("META PLUGINS AVAILABLE:"); build_meta_plugin_table(&status_info.meta_plugins).printstd(); Ok(()) },