diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-06-23 11:59:11 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-06-23 11:59:11 +0200 |
commit | efba4c7c7646d09e21c5297bb5ed74357e7f4525 (patch) | |
tree | ce4fdd5baedcf61a42d15372315a9ad37a52bb4e /etc/completions/_youtube-dl | |
parent | 3ae614b7c3f446179c486a4874c02574148bbe43 (diff) |
completions: Fix long/short equivalence handling
Diffstat (limited to 'etc/completions/_youtube-dl')
-rw-r--r-- | etc/completions/_youtube-dl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/completions/_youtube-dl b/etc/completions/_youtube-dl index c0daef2..98fa6e3 100644 --- a/etc/completions/_youtube-dl +++ b/etc/completions/_youtube-dl @@ -61,7 +61,7 @@ arguments=( for arg in ${(k)argument_pairs}; { arguments+='(--'${arg}')-'${argument_pairs[$arg]}${argument_postfix[$arg]} - arguments+='(-'${argument_pairs[$arg]}[1]')--'${arg}${argument_postfix[$arg]} + arguments+='(-'${${argument_pairs[$arg]}[1]}')--'${arg}${argument_postfix[$arg]} } _arguments -s ${arguments} |