diff options
author | Clint Adams <clint@users.sourceforge.net> | 2000-12-17 15:45:21 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2000-12-17 15:45:21 +0000 |
commit | 76ce03c62ce56cd5f4b6d653cb1ceeed598320fc (patch) | |
tree | 8bf6688013082bee92f69eef6f7a27f9a6c30bc7 /Completion/Debian | |
parent | 720b194aee6c1aea4eb23359edeb6bc6c29740a0 (diff) | |
download | zsh-76ce03c62ce56cd5f4b6d653cb1ceeed598320fc.tar.gz zsh-76ce03c62ce56cd5f4b6d653cb1ceeed598320fc.tar.xz zsh-76ce03c62ce56cd5f4b6d653cb1ceeed598320fc.zip |
13287: dpkg -i can take multiple arguments
Diffstat (limited to 'Completion/Debian')
-rw-r--r-- | Completion/Debian/_dpkg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Debian/_dpkg b/Completion/Debian/_dpkg index c50b5570c..90313b39a 100644 --- a/Completion/Debian/_dpkg +++ b/Completion/Debian/_dpkg @@ -113,9 +113,9 @@ case "$state" in \!${^_dpkg_actions%%:*} \ - recur \ "$_dpkg_options_recursive[@]" \ - ':directory:_path_files -/' \ + '*:directory:_path_files -/' \ - nonrecur \ - ':Debian package:_path_files -g \*.deb' + '*:Debian package:_path_files -g \*.deb' ;; remove|purge|status|listfiles) _funcall ret _dpkg_$state && return ret |