mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 10:01:11 +02:00
unposted: _deb_packages: Minor optimization.
This commit is contained in:
parent
8e69dd54b7
commit
0f4cfc2597
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
2016-07-23 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||
|
||||
* unposted: Completion/Debian/Type/_deb_packages: Minor
|
||||
optimization.
|
||||
|
||||
* 38913: Completion/Unix/Command/_pkg-config: Complete variables
|
||||
for --variable.
|
||||
|
||||
|
|
|
@ -122,7 +122,7 @@ _deb_packages () {
|
|||
|
||||
typeset -gH $cachevar
|
||||
|
||||
_tags packages && compadd "$expl[@]" - "${(@P)cachevar}"
|
||||
_tags packages && compadd "$expl[@]" -a - $cachevar
|
||||
}
|
||||
|
||||
_debs_caching_policy () {
|
||||
|
|
Loading…
Reference in a new issue