use cli_utils::string_vec; use crate::systems::comp::context::CompletionContext; pub fn comp(ctx: CompletionContext) -> Option> { if ctx.current_word.starts_with('-') { return Some(string_vec!["-c", "--with-compile-info", "--no-banner"]); } None }