diff options
Diffstat (limited to '')
-rw-r--r-- | share/bash-completion/container | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index 8d54ba4..99d342b 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -36,6 +36,16 @@ _container() fi case "${cmd}" in + auto) + case "${cur}" in + -*) + opts="-f --force -s --start -t --stop" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + esac + ;; + console) case "${cur}" in -*) |