Use colored help message (#32)

💙💜💚❤️💛
This commit is contained in:
Casey Rodarmor 2016-11-07 21:05:07 -08:00 committed by GitHub
parent 7facd26508
commit 2b55ae35bb

View File

@ -3,7 +3,7 @@ extern crate regex;
use std::{io, fs, env, process}; use std::{io, fs, env, process};
use std::collections::BTreeMap; use std::collections::BTreeMap;
use self::clap::{App, Arg}; use self::clap::{App, Arg, AppSettings};
use super::{Slurp, RunError}; use super::{Slurp, RunError};
macro_rules! warn { macro_rules! warn {
@ -26,6 +26,7 @@ pub fn app() {
.version("0.2.16") .version("0.2.16")
.author("Casey Rodarmor <casey@rodarmor.com>") .author("Casey Rodarmor <casey@rodarmor.com>")
.about("Just a command runner - https://github.com/casey/just") .about("Just a command runner - https://github.com/casey/just")
.setting(AppSettings::ColoredHelp)
.arg(Arg::with_name("list") .arg(Arg::with_name("list")
.short("l") .short("l")
.long("list") .long("list")