index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel Wallace <danielwallace@gtmanfred.com> | 2013-03-18 03:37:03 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-03-26 15:55:51 +1000 |
commit | fb522face1da5989d79540a9912c9bc3ca830935 (patch) | |
tree | d464e222bcf5995fd8fed43c5542f1f0a5d87651 /contrib | |
parent | cd6ca88c49ce795d4d5a36454aaf8adb955114f8 (diff) |
-rw-r--r-- | contrib/zsh_completion.in | 7 |
diff --git a/contrib/zsh_completion.in b/contrib/zsh_completion.in index 5096b8f7..f9d11063 100644 --- a/contrib/zsh_completion.in +++ b/contrib/zsh_completion.in @@ -3,6 +3,7 @@ # copy this file to /usr/share/zsh/site-functions/_pacman typeset -A opt_args +setopt extendedglob # options for passing to _arguments: main pacman commands _pacman_opts_commands=( @@ -39,7 +40,7 @@ _pacman_opts_pkgfile=( '--dbonly[Only remove database entry, do not remove files]' '--force[Overwrite conflicting files]' '--needed[Do not reinstall up to date packages]' - '*:package file:_files -g "*.pkg.tar*(.)"' + '*:package file:_files -g "*.pkg.tar*~*.sig(.,@)"' ) # options for passing to _arguments: subactions for --query command @@ -130,7 +131,7 @@ _pacman_action_query() { _arguments -s : \ "$_pacman_opts_common[@]" \ "$_pacman_opts_query_modifiers[@]" \ - '*:package file:_files -g "*.pkg.tar*"' + '*:package file:_files -g "*.pkg.tar*~*.sig(.,@)"' ;; query_group) _arguments -s : \ @@ -354,7 +355,7 @@ _pacman_zsh_comp() { _arguments -s : \ "$_pacman_opts_common[@]" \ "$_pacman_opts_query_modifiers[@]" \ - '*:package file:_files -g "*.pkg.tar*"' + '*:package file:_files -g "*.pkg.tar*~*.sig(.,@)"' ;; T*) _pacman_action_deptest |