diff options
author | Clint Adams <clint@users.sourceforge.net> | 2002-02-03 06:12:34 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2002-02-03 06:12:34 +0000 |
commit | 1dd643b01672c17fb96085dd5377f565530b9fb5 (patch) | |
tree | f46b568a8a77a769e7be0812e36bca536c43bb06 /Completion | |
parent | 29b704202aace2478f2635a660a5922a779f1b4f (diff) | |
download | zsh-1dd643b01672c17fb96085dd5377f565530b9fb5.tar.gz zsh-1dd643b01672c17fb96085dd5377f565530b9fb5.tar.xz zsh-1dd643b01672c17fb96085dd5377f565530b9fb5.zip |
16540: short options and local files
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_rsync | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_rsync b/Completion/Unix/Command/_rsync index cb0261340..bb6eb3acb 100644 --- a/Completion/Unix/Command/_rsync +++ b/Completion/Unix/Command/_rsync @@ -1,5 +1,24 @@ #compdef rsync -_arguments -- '*=COMMAND*:command:_command' \ +_arguments -C -s \ + '*:local files:_files' \ + '(--verbose)-v[verbose]' \ + '(--quiet)-q[quiet]' \ + '(--checksum)-c[checksum]' \ + '(--archive)-a[archive]' \ + '(--recursive)-r[recursive]' \ + '(--backup)-b[backup]' \ + '(--update)-u[update]' \ + '(--links)-l[links]' \ + '(--perms)-p[perms]' \ + '(--owner)-o[owner]' \ + '(--group)-g[group]' \ + '(--times)-t[times]' \ + '(--dry-run)-n[dry-run]' \ + '(--one-file-system)-x[one-file-system]' \ + '(--rsh)-e[rsh command]:remote command:(rsh ssh)' \ + '(--compress)-z[compress]' \ + '(--help)-h[help]' \ + -- '*=COMMAND*:command:_command' \ '*=FILE*:file:_files' \ '*=DIR*:directory:_files -/' |