diff options
Diffstat (limited to '')
-rw-r--r-- | share/bash-completion/container | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index 1e5bf51..fafdd3c 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -80,6 +80,26 @@ _container() esac ;; + enter) + case "${cur}" in + -*) + opts="-n --name" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + + *) + case "${prev}" in + -n|--name) + opts=$(container list -s -f short) + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + esac + ;; + esac + ;; + limit) case "${cur}" in -*) |