Add zsh completion logic to new subcommand: inspect

Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
This commit is contained in:
Steve Durrheimer 2016-10-30 16:45:02 +01:00
parent 911ef73ee1
commit e5424b656b
No known key found for this signature in database
GPG key ID: 8F443EBA70F74839

View file

@ -676,7 +676,11 @@ __docker_container_subcommand() {
"($help -)*:containers:__docker_complete_containers" && ret=0
;;
(inspect)
__docker_subcommand && ret=0
_arguments $(__docker_arguments) \
$opts_help \
"($help -f --format)"{-f=,--format=}"[Format the output using the given go template]:template: " \
"($help -s --size)"{-s,--size}"[Display total file sizes]" \
"($help -)*:containers:__docker_complete_containers" && ret=0
;;
(kill)
__docker_subcommand && ret=0