summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@zarb.org>2009-02-12 22:24:35 +0100
committerGuillaume Rousse <guillomovitch@zarb.org>2009-02-12 22:24:35 +0100
commitea0d17b6853980d6dd73624ad3cfa11e8a767958 (patch)
tree3192372e2d04c94b3e8c686e824f0a515c3fc88a
parent6c27cd16ddf9353d02f6385da21505e1b2e10604 (diff)
downloadbash-completion-ea0d17b6853980d6dd73624ad3cfa11e8a767958.tar.gz
don't append = automatically after alias completion, for sake of minimal completion
-rw-r--r--bash_completion2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash_completion b/bash_completion
index bd9e3585..d5560d70 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 | \