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 | |
parent | 720b194aee6c1aea4eb23359edeb6bc6c29740a0 (diff) | |
download | zsh-76ce03c62ce56cd5f4b6d653cb1ceeed598320fc.tar.gz zsh-76ce03c62ce56cd5f4b6d653cb1ceeed598320fc.tar.xz zsh-76ce03c62ce56cd5f4b6d653cb1ceeed598320fc.zip |
13287: dpkg -i can take multiple arguments
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Debian/_dpkg | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 42dba9f71..4ce81d2bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-12-17 Clint Adams <schizo@debian.org> + + * 13287: Completion/Debian/_dpkg: complete multiple + arguments for -i. + 2000-12-16 Clint Adams <schizo@debian.org> * unposted: Completion/User/.distfiles: add _mere 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 |