contrib/aptitude: add @(add|remove)-user-tag

This commit is contained in:
David Paleino 2009-10-26 09:37:50 +01:00
parent 4b289de690
commit 27b266d051
2 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@ bash-completion (2.x)
* Fixed "freq" and "rate" completion for iwconfig
* contrib/munin-node fixed (Debian: #550943)
* contrib/dpkg fixed -W and --show completing on .?(u)deb's (Debian: #552109)
* contrib/aptitude: add @(add|remove)-user-tag
[ Ville Skyttä ]
* Create bz2 dist tarball too.

View File

@ -30,7 +30,7 @@ _aptitude()
-Z -v --verbose --purge-unused --schedule-only'
for (( i=0; i < ${#COMP_WORDS[@]}-1; i++ )); do
if [[ ${COMP_WORDS[i]} == @(install|reinstall|hold|unhold|markauto|unmarkauto|dist-upgrade|full-upgrade|download|show|forbid-version|purge|remove|changelog|why|why-not|keep|keep-all|build-dep) ]]; then
if [[ ${COMP_WORDS[i]} == @(install|reinstall|hold|unhold|markauto|unmarkauto|dist-upgrade|full-upgrade|download|show|forbid-version|purge|remove|changelog|why|why-not|keep|keep-all|build-dep|@(add|remove)-user-tag) ]]; then
special=${COMP_WORDS[i]}
fi
#exclude some mutually exclusive options
@ -40,7 +40,7 @@ _aptitude()
if [[ -n "$special" ]]; then
case $special in
@(install|hold|markauto|unmarkauto|dist-upgrade|full-upgrade|download|show|changelog|why|why-not|build-dep))
@(install|hold|markauto|unmarkauto|dist-upgrade|full-upgrade|download|show|changelog|why|why-not|build-dep|@(add|remove)-user-tag))
COMPREPLY=( $( apt-cache pkgnames $cur 2> /dev/null ) )
return 0
;;