diff options
author | Clint Adams <clint@users.sourceforge.net> | 2005-03-07 04:25:38 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2005-03-07 04:25:38 +0000 |
commit | eb8e55c91eb9d87029a8e5755b68cffb6e532604 (patch) | |
tree | 63d293f898fc9ec483fc41291d8bf402a3318464 /Completion/Debian | |
parent | 97d543e60178890a3034b63d83b6b93ce3eb229a (diff) | |
download | zsh-eb8e55c91eb9d87029a8e5755b68cffb6e532604.tar.gz zsh-eb8e55c91eb9d87029a8e5755b68cffb6e532604.tar.xz zsh-eb8e55c91eb9d87029a8e5755b68cffb6e532604.zip |
* 20944: Completion/Debian/Command/_uscan: completion for uscan command.
Diffstat (limited to 'Completion/Debian')
-rw-r--r-- | Completion/Debian/Command/_uscan | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Completion/Debian/Command/_uscan b/Completion/Debian/Command/_uscan new file mode 100644 index 000000000..fb8e3ff02 --- /dev/null +++ b/Completion/Debian/Command/_uscan @@ -0,0 +1,17 @@ +#compdef uscan + +_arguments \ + '(--report --no-download --download)'{--report,--no-download}'[report but do not download]' \ + '--debug[dump downloaded pages to stdout]' \ + '(--report --no-download --download)--download[report and download]' \ + '(--pasv --no-pasv)--pasv[force PASV mode for FTP]' \ + '(--pasv --no-pasv)--no-pasv[do not use PASV mode for FTP]' \ + '(--symlink --no-symlink)--symlink[make orig.tar.gz symlinks]' \ + '(--symlink --no-symlink)--no-symlink[do not make orig.tar.gz symlinks]' \ + '(--verbose --no-verbose)--verbose[give verbose output]' \ + '(--verbose --no-verbose)--no-verbose[do not give verbose output]' \ + '--check-dirname-level:level:((0\:never\ check\ the\ directory\ name 1\:only\ check\ directory\ name\ if\ we\ had\ to\ change\ directory 2\:always\ check\ the\ directory\ name))' \ + '--check-dirname-regex:perlre:' \ + '(--no-conf --noconf)'{--no-conf,--noconf}'[do not read any configuration files]' \ + '--help[help]' \ + '--version[version]' |