Skip to content

Commit 5a99c76

Browse files
committed
added --password option for autocompletion
1 parent 8e0bd9e commit 5a99c76

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

config/bash_completion.d/ee_auto.rc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,17 @@ _ee_complete()
106106
case "$mprev" in
107107
# HANDLE EVERYTHING AFTER THE THIRD LEVEL NAMESPACE
108108

109-
"create" | "update")
109+
"create")
110110
COMPREPLY=( $(compgen \
111111
-W "--html --php --mysql --wp --wpsubdir --wpsubdomain --w3tc --wpfc --wpsc" \
112112
-- $cur) )
113113
;;
114+
115+
"update")
116+
COMPREPLY=( $(compgen \
117+
-W "--password --php --mysql --wp --wpsubdir --wpsubdomain --w3tc --wpfc --wpsc" \
118+
-- $cur) )
119+
;;
114120
"delete")
115121
COMPREPLY=( $(compgen \
116122
-W "--db --files --all" \

0 commit comments

Comments
 (0)