We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bd821f commit 3dcdce4Copy full SHA for 3dcdce4
config/bash_completion.d/ee_auto.rc
@@ -66,11 +66,16 @@ _ee_complete()
66
elif [ $COMP_CWORD -eq 3 ]; then
67
case "$prev" in
68
# HANDLE EVERYTHING AFTER THE THIRD LEVEL NAMESPACE
69
- "install" | "purge" | "remove" | "start" | "stop" | "reload")
+ "install" | "purge" | "remove" )
70
COMPREPLY=( $(compgen \
71
-W "--web --admin --mail --nginx --php --mysql --postfix --wpcli --phpmyadmin --adminer --utils --memcache --dovecot" \
72
-- $cur) )
73
;;
74
+ "start" | "stop" | "reload" | "restart" | "status")
75
+ COMPREPLY=( $(compgen \
76
+ -W "--nginx --php --mysql --postfix --memcache --dovecot" \
77
+ -- $cur) )
78
+ ;;
79
80
"list")
81
0 commit comments