1 2 3 4 5 6 7 8 9 10 11 12
use crate::ctx; use ansi_term::Colour::Green; pub fn show_contexts(contexts: &[ctx::Context]) { for c in contexts.iter() { if c.active { println!("{}", Green.bold().paint(format!("* {}", c.name))) } else { println!(" {}", c.name); } } }