[Bash-completion-commits] [SCM] bash-completion branch, master, updated. 27b266d05186568c40a95d381ea63212e56ad1aa
David Paleino
d.paleino at gmail.com
Mon Oct 26 08:40:45 UTC 2009
The following commit has been merged in the master branch:
commit 27b266d05186568c40a95d381ea63212e56ad1aa
Author: David Paleino <d.paleino at gmail.com>
Date: Mon Oct 26 09:37:50 2009 +0100
contrib/aptitude: add @(add|remove)-user-tag
diff --git a/CHANGES b/CHANGES
index 6a2e6e4..116ffd4 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 631a8f8..bebeeb5 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
;;
--
bash-completion
More information about the Bash-completion-commits
mailing list