From 08caa8104b23598e81eecd7c142824123f311f01 Mon Sep 17 00:00:00 2001 From: grapegrip <59345948+grapegrip@users.noreply.github.com> Date: Fri, 17 Jan 2020 16:33:00 -0500 Subject: [PATCH] Use s flag for syntax highlighting --- src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index ae08545..4b255b0 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -25,9 +25,9 @@ pub fn get_cli_matches<'a>() -> ArgMatches<'static> { ) .arg( Arg::with_name("highlight") - .short("h") + .short("s") .long("highlight") - .help("include syntax highlighting"), + .help("syntax highlighting"), ) .arg(Arg::with_name("outfile").help("tmp")) .get_matches()