From 3f3ef9ac150a1cb44b6236bb6ed9abb51bcfbe71 Mon Sep 17 00:00:00 2001 From: polyfloyd Date: Sat, 8 Jul 2017 19:32:56 +0200 Subject: [PATCH] Add a long option for the command flag (-e) (#655) --- src/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli.rs b/src/cli.rs index e7783807..789b1755 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -90,6 +90,7 @@ impl Options { .takes_value(true) .help("Specify alternative configuration file [default: $XDG_CONFIG_HOME/alacritty/alacritty.yml]")) .arg(Arg::with_name("command") + .long("command") .short("e") .multiple(true) .takes_value(true)