diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2003-07-31 15:26:13 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2003-07-31 15:26:13 +0000 |
commit | b84399b9cbb93f199d695d7cb264c44178a8d5e0 (patch) | |
tree | af329c706dd4104718b02c78e2009f9488ad59e5 /Completion/Cygwin/Command/_cygpath | |
parent | 27665b32d6e1f60d6e786baa2478aa396f7e9b98 (diff) | |
download | zsh-b84399b9cbb93f199d695d7cb264c44178a8d5e0.tar.gz zsh-b84399b9cbb93f199d695d7cb264c44178a8d5e0.tar.xz zsh-b84399b9cbb93f199d695d7cb264c44178a8d5e0.zip |
tidy up of many completions (updates, fixes, improvements and plain aesthetics)
Diffstat (limited to 'Completion/Cygwin/Command/_cygpath')
-rw-r--r-- | Completion/Cygwin/Command/_cygpath | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/Completion/Cygwin/Command/_cygpath b/Completion/Cygwin/Command/_cygpath index 570639e6c..0ecfccc2e 100644 --- a/Completion/Cygwin/Command/_cygpath +++ b/Completion/Cygwin/Command/_cygpath @@ -1,14 +1,12 @@ #compdef cygpath cygpath.exe #Generated by Felix Rosencrantz -local context state line -typeset -A opt_args _arguments \ '(--dos --mixed --type --unix --windows -d -m -t -u -w)'{-d,--dos}'[print DOS (short) form of NAME (C:\PROGRA~1\)]' \ '(--dos --mixed --type --unix --windows -d -m -t -u -w)'{-m,--mixed}'[like --windows, but with regular slashes (C:/WINNT)]' \ '(--dos --mixed --type --unix --windows -d -m -t -u -w)'{-u,--unix}'[(default) print Unix form of NAME (/cygdrive/c/winnt)]' \ '(--dos --mixed --type --unix --windows -d -m -t -u -w)'{-w,--windows}'[print Windows form of NAME (C:\WINNT)]' \ - "(--dos --mixed --type --unix --windows -d -m -t -u -w)"{-t,--type}":print TYPE form\: 'dos', 'mixed', 'unix', or 'windows':(dos mixed unix windows)" \ + '(--dos --mixed --type --unix --windows -d -m -t -u -w)'{-t,--type}':print type:(dos mixed unix windows)' \ '(--absolute --long-name --path --short-name -a -l -p -s)'{-a,--absolute}'[output absolute path]' \ '(--absolute --long-name --path --short-name -a -l -p -s)'{-l,--long-name}'[print Windows long form of NAME (with -w, -m only)]' \ "(--absolute --long-name --path --short-name -a -l -p -s)"{-p,--path}"[NAME is a PATH list (i.e., '/bin:/usr/bin')]" \ @@ -21,13 +19,8 @@ _arguments \ "(--desktop --homeroot --smprograms --sysdir --windir -D -H -P -S -W)"{-W,--windir}"[output 'Windows' directory and exit]" \ '(--file -f)'{-f,--file}':read FILE for input; use - to read from STDIN:_files' \ '(--option -o)'{-o,--option}'[read options from FILE as well (for use with --file)]' \ - '(--close -c)'{-c,--close}':close HANDLE (for use in captured process):->HANDLE' \ + '(--close -c)'{-c,--close}'[close specified handle (for use in captured process)]:handle' \ '(--ignore -i)'{-i,--ignore}'[ignore missing argument]' \ - '(--help -h)'{-h,--help}'[output usage information and exit]' \ - '(--version -v)'{-v,--version}'[output version information and exit]' \ + '(- 1)'{-h,--help}'[display usage information]' \ + '(- 1)'{-v,--version}'[display version information]' \ '1: :_files' && return 0 - -case $state in - "HANDLE");; -esac - |