| OLD | NEW |
| (Empty) |
| 1 #compdef tapconvert | |
| 2 _arguments -s -A "-*" \ | |
| 3 '(--decrypt)-d[The specified tap/aos/xml file is encrypted.]' \ | |
| 4 '(-d)--decrypt[The specified tap/aos/xml file is encrypted.]' \ | |
| 5 '(--encrypt)-e[Encrypt file before writing]' \ | |
| 6 '(-e)--encrypt[Encrypt file before writing]' \ | |
| 7 '--help[Display this help and exit.]' \ | |
| 8 '(--in)-i[The filename of the tap to read from]:tap file to read from:_files' \ | |
| 9 '(-i)--in=[The filename of the tap to read from]:tap file to read from:_files' \ | |
| 10 '(--out)-o[A filename to write the tap to]:tap file to write to:_files' \ | |
| 11 '(-o)--out=[A filename to write the tap to]:tap file to write to:_files' \ | |
| 12 "(--typein)-f[The format to use; this can be 'guess', 'python', 'pickle', 'xml'
, or 'source'.]:typein:(guess python pickle xml source)" \ | |
| 13 "(-f)--typein=[The format to use; this can be 'guess', 'python', 'pickle', 'xml
', or 'source'.]:typein:(guess python pickle xml source)" \ | |
| 14 "(--typeout)-t[The output format to use; this can be 'pickle', 'xml', or 'source
'.]:typeout:(pickle xml source)" \ | |
| 15 "(-t)--typeout=[The output format to use; this can be 'pickle', 'xml', or 'sourc
e'.]:typeout:(pickle xml source)" \ | |
| 16 '--version[version]' \ | |
| 17 && return 0 | |
| OLD | NEW |