diff options
author | Andinus <andinus@nand.sh> | 2020-07-04 11:44:47 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-07-04 11:44:47 +0530 |
commit | 64fbc9a818a0d9d2f502e7b12b744863d09a568a (patch) | |
tree | 9bbf801b9a0607b3a496ccb6855c27c33ff45651 | |
parent | 33de99a28ddc24e1bf6c694dff0a5fed06427e3e (diff) | |
download | leo-64fbc9a818a0d9d2f502e7b12b744863d09a568a.tar.gz |
Shorten option length
`sync emacs irclogs' was too big, now it's `sync irclogs'.
-rwxr-xr-x | leo.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/leo.pl b/leo.pl index 0a3e540..37f620c 100755 --- a/leo.pl +++ b/leo.pl @@ -23,8 +23,8 @@ GetOptions( my %dispatch = ( "sync emacs" => sub { $options{config} = 1; Emacs::sync(\%options); }, - "sync emacs irclogs" => sub { $options{irclogs} = 1; Emacs::sync(\%options); }, - "sync emacs authinfo" => sub { $options{authinfo} = 1; Emacs::sync(\%options); }, + "sync irclogs" => sub { $options{irclogs} = 1; Emacs::sync(\%options); }, + "sync authinfo" => sub { $options{authinfo} = 1; Emacs::sync(\%options); }, ); if ( $dispatch{ "@ARGV" } ) { |