diff options
| author | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-07 14:37:34 +0000 |
|---|---|---|
| committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-07 14:37:34 +0000 |
| commit | c5b7a61b52e49b11eac612841fc9cd7d9ed22af9 (patch) | |
| tree | e823a4fdb4dd156309593a628ccfb298e4c52bca /Completion/User/_dd | |
| parent | zsh-workers/9260 (diff) | |
| download | zsh-c5b7a61b52e49b11eac612841fc9cd7d9ed22af9.tar zsh-c5b7a61b52e49b11eac612841fc9cd7d9ed22af9.tar.gz zsh-c5b7a61b52e49b11eac612841fc9cd7d9ed22af9.tar.bz2 zsh-c5b7a61b52e49b11eac612841fc9cd7d9ed22af9.tar.lz zsh-c5b7a61b52e49b11eac612841fc9cd7d9ed22af9.tar.xz zsh-c5b7a61b52e49b11eac612841fc9cd7d9ed22af9.tar.zst zsh-c5b7a61b52e49b11eac612841fc9cd7d9ed22af9.zip | |
zsh-workers/9262
Diffstat (limited to 'Completion/User/_dd')
| -rw-r--r-- | Completion/User/_dd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/User/_dd b/Completion/User/_dd index fb78f194a..3ae0a8417 100644 --- a/Completion/User/_dd +++ b/Completion/User/_dd @@ -2,17 +2,17 @@ local expl -if compset -P 1 'conv\='; then +if compset -P 1 'conv='; then # If there's a comma present, ignore up to the last one. The # test alone will have that effect. compset -p '*,' _wanted values expl conversion && compadd "$expl[@]" -qS, -q \ ascii ebcdic ibm block unblock lcase ucase swab noerror sync -elif compset -P 1 'if\='; then +elif compset -P 1 'if='; then _description files expl 'input file' _files "$expl[@]" -elif compset -P 1 'of\='; then +elif compset -P 1 'of='; then _description files expl 'output file' _files "$expl[@]" else |
