diff options
author | Doug Kearns <dkearns@users.sourceforge.net> | 2005-07-20 12:45:14 +0000 |
---|---|---|
committer | Doug Kearns <dkearns@users.sourceforge.net> | 2005-07-20 12:45:14 +0000 |
commit | eb86b42f304ec29a885a047ef5c681ec2ab40d1d (patch) | |
tree | 48787d9d01e9da12895b9d09081948dd3dfa96c1 /Completion/Unix | |
parent | 65250b8f0d0f1a9c59c3803afeba844c1e841cbb (diff) | |
download | zsh-eb86b42f304ec29a885a047ef5c681ec2ab40d1d.tar.gz zsh-eb86b42f304ec29a885a047ef5c681ec2ab40d1d.tar.xz zsh-eb86b42f304ec29a885a047ef5c681ec2ab40d1d.zip |
unposted: add -s option to _arguments call in _rake
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_rake b/Completion/Unix/Command/_rake index 2bd927f92..e14458a9c 100644 --- a/Completion/Unix/Command/_rake +++ b/Completion/Unix/Command/_rake @@ -5,7 +5,7 @@ local curcontext="$curcontext" state line ret=1 typeset -A opt_args -_arguments -C -S \ +_arguments -C -s -S \ '(--dry-run -n)'{--dry-run,-n}'[do a dry run without executing actions]' \ '(- *)'{--help,-H}'[display help information]' \ \*{--libdir,-I}'[include specified directory in the search path for required modules]:library directory:_files -/' \ |