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 1dbc204 commit 3f08d33Copy full SHA for 3f08d33
contrib/bash/completion.sh
@@ -153,6 +153,21 @@ _vagrant() {
153
COMPREPLY=($(compgen -W "${box_list}" -- ${cur}))
154
return 0
155
;;
156
+ "add")
157
+ local add_commands="\
158
+ --name \
159
+ --checksum \
160
+ --checksum-type \
161
+ -c --clean \
162
+ -f --force \
163
+ "
164
+ if [[ $cur == -* ]]; then
165
+ COMPREPLY=($(compgen -W "${add_commands}" -- ${cur}))
166
+ else
167
+ COMPREPLY=($(compgen -o default -- "${cur}"))
168
+ fi
169
+ return 0
170
+ ;;
171
*)
172
173
esac
0 commit comments