diff options
author | Clint Adams <clint@users.sourceforge.net> | 2007-04-14 20:04:06 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2007-04-14 20:04:06 +0000 |
commit | 2f5b3f97bd76c49e28360592decca9ec65368486 (patch) | |
tree | f736a130ab11e0f4e5a1f36c6e68d47a1c4ee34f /Completion/Unix | |
parent | 05ff4fb3abd960b99d6f14b0def7e9187b9c659e (diff) | |
download | zsh-2f5b3f97bd76c49e28360592decca9ec65368486.tar.gz zsh-2f5b3f97bd76c49e28360592decca9ec65368486.tar.xz zsh-2f5b3f97bd76c49e28360592decca9ec65368486.zip |
23275: change order of arguments to _arguments so that options will actually be completed.
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_date | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_date b/Completion/Unix/Command/_date index 2dc977dc8..8f85af1ad 100644 --- a/Completion/Unix/Command/_date +++ b/Completion/Unix/Command/_date @@ -43,6 +43,6 @@ else fi _arguments \ + "$args[@]" \ '-u[display or set time in UTC]' \ - ':format or date' \ - $args[@] + ':format or date' |