Browse Source

Minor Update On Auto Completion

old-stable
Mitesh Shah 11 years ago
parent
commit
425769b877
  1. 11
      etc/bash_completion.d/ee

11
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
}

Loading…
Cancel
Save