diff --git a/bash_completion b/bash_completion index c82de73c..d1072986 100644 --- a/bash_completion +++ b/bash_completion @@ -2,7 +2,7 @@ # # # @@ -285,7 +285,7 @@ _man() prev=${COMP_WORDS[COMP_CWORD-1]} # default completion if parameter contains / - [[ "$cur" == /* ]] && return 0 + [[ "$cur" == */* ]] && return 0 # default to command completion if no man.config if [ ! -f /etc/man.config ]; then COMPREPLY=( $( compgen -c $cur ) )