diff --git a/etc/bash_completion.d/ee b/etc/bash_completion.d/ee index 314515da..6170ec71 100644 --- a/etc/bash_completion.d/ee +++ b/etc/bash_completion.d/ee @@ -60,6 +60,17 @@ EEAUTO() return 0 ;; + *) + if [ "$EECOMMON" = "create" ] + then + COMPREPLY=( $( compgen -W "--html --php --wp --wpsubdir --wpsubdomain" -- $CURRENT ) ) + elif [ "$EECOMMON" = "delete" ] + then + COMPREPLY=( $( compgen -W "--db --all --files" -- $CURRENT ) ) + fi + return 0 + ;; + esac }