Move zsh completion logic to new subcommand: diff

Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
This commit is contained in:
Steve Durrheimer 2016-10-29 15:46:56 +02:00 committed by Tibor Vass
parent 6e850a9613
commit 978fbdd9dc
1 changed files with 4 additions and 4 deletions

View File

@ -644,7 +644,9 @@ __docker_container_subcommand() {
esac esac
;; ;;
(diff) (diff)
__docker_subcommand && ret=0 _arguments $(__docker_arguments) \
$opts_help \
"($help -)*:containers:__docker_complete_containers" && ret=0
;; ;;
(exec) (exec)
__docker_subcommand && ret=0 __docker_subcommand && ret=0
@ -1896,9 +1898,7 @@ __docker_subcommand() {
esac esac
;; ;;
(diff) (diff)
_arguments $(__docker_arguments) \ __docker_container_subcommand && ret=0
$opts_help \
"($help -)*:containers:__docker_complete_containers" && ret=0
;; ;;
(events) (events)
_arguments $(__docker_arguments) \ _arguments $(__docker_arguments) \