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(()) },