From e289a2c69833151cbcb75c11e16a4d2a7c907957 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sat, 31 Aug 2019 13:22:16 +0200 Subject: [PATCH] Add short '-L' option as an alias for --list-languages --- src/clap_app.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/clap_app.rs b/src/clap_app.rs index 21fb0493..88bb0e87 100644 --- a/src/clap_app.rs +++ b/src/clap_app.rs @@ -54,6 +54,7 @@ pub fn build_app(interactive_output: bool) -> ClapApp<'static, 'static> { .arg( Arg::with_name("list-languages") .long("list-languages") + .short("L") .conflicts_with("list-themes") .help("Display all supported languages.") .long_help("Display a list of supported languages for syntax highlighting."),