data/xbps.bash: use installed packages in non-repo query completion.

This commit is contained in:
Eivind Uggedal 2014-09-18 19:45:58 +00:00
parent 0f73158ed8
commit 487b7296c6

View File

@ -102,7 +102,14 @@ _xbps_complete() {
return
fi
if [[ $prev != -@($morecommon|o|-ownedby) ]]; then
_xbps_all_reply $cur
local w
for w in "${words[@]}"; do
if [[ "$w" == -@(R|-repository) ]]; then
_xbps_all_reply $cur
return
fi
done
_xbps_installed_reply $cur
return
fi
;;