From 27b266d05186568c40a95d381ea63212e56ad1aa Mon Sep 17 00:00:00 2001 From: David Paleino Date: Mon, 26 Oct 2009 09:37:50 +0100 Subject: [PATCH] contrib/aptitude: add @(add|remove)-user-tag --- CHANGES | 1 + contrib/aptitude | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 6a2e6e45..116ffd42 100644 --- a/CHANGES +++ b/CHANGES @@ -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. diff --git a/contrib/aptitude b/contrib/aptitude index 631a8f86..bebeeb5e 100644 --- a/contrib/aptitude +++ b/contrib/aptitude @@ -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 ;;