diff options
Diffstat (limited to 'share/bash-completion')
-rw-r--r-- | share/bash-completion/container | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index 3995a16..8847419 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -230,6 +230,12 @@ _container() esac ;; + top) + opts="-d --delay" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + version) return 0 ;; |