mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
14 lines
466 B
Plaintext
14 lines
466 B
Plaintext
#compdef getclip getclip.exe
|
|
#Generated by Felix Rosencrantz
|
|
|
|
local context state line
|
|
typeset -A opt_args
|
|
_arguments \
|
|
'(--dos -d)'{-d,--dos}'[Output text will have DOS line endings.]' \
|
|
'(--unix -u)'{-u,--unix}'[Output text will have UNIX line endings.]' \
|
|
'(--help -?)'{'-?',--help}'[Show this help message]' \
|
|
'--usage[Display brief usage message]' \
|
|
'--version[Display version information]' \
|
|
'--license[Display licensing information]'
|
|
|