[Bash-completion-commits] [SCM] bash-completion branch, master, updated. ea0d17b6853980d6dd73624ad3cfa11e8a767958

Guillaume Rousse guillomovitch at zarb.org
Thu Feb 12 21:24:59 UTC 2009


The following commit has been merged in the master branch:
commit ea0d17b6853980d6dd73624ad3cfa11e8a767958
Author: Guillaume Rousse <guillomovitch at zarb.org>
Date:   Thu Feb 12 22:24:35 2009 +0100

    don't append = automatically after alias completion, for sake of minimal completion

diff --git a/bash_completion b/bash_completion
index bd9e358..d5560d7 100644
--- a/bash_completion
+++ b/bash_completion
@@ -551,7 +551,7 @@ _alias()
 
 	case "$COMP_LINE" in
 	*[^=])
-		COMPREPLY=( $( compgen -A alias -S '=' -- $cur ) )
+		COMPREPLY=( $( compgen -A alias -- $cur ) )
 		;;
 	*=)
 		COMPREPLY=( "$( alias ${cur%=} 2>/dev/null | \

-- 
bash-completion



More information about the Bash-completion-commits mailing list