Move zsh completion logic to new subcommand: commit

Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
This commit is contained in:
Steve Durrheimer 2016-10-29 15:41:57 +02:00 committed by Tibor Vass
parent f80a33998f
commit aee4d2e078
1 changed files with 9 additions and 9 deletions

View File

@ -526,7 +526,14 @@ __docker_container_subcommand() {
"($help -):containers:__docker_complete_running_containers" && ret=0 "($help -):containers:__docker_complete_running_containers" && ret=0
;; ;;
(commit) (commit)
__docker_subcommand && ret=0 _arguments $(__docker_arguments) \
$opts_help \
"($help -a --author)"{-a=,--author=}"[Author]:author: " \
"($help)*"{-c=,--change=}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \
"($help -m --message)"{-m=,--message=}"[Commit message]:message: " \
"($help -p --pause)"{-p,--pause}"[Pause container during commit]" \
"($help -):container:__docker_complete_containers" \
"($help -): :__docker_repositories_with_tags" && ret=0
;; ;;
(cp) (cp)
__docker_subcommand && ret=0 __docker_subcommand && ret=0
@ -1672,14 +1679,7 @@ __docker_subcommand() {
"($help -):path or URL:_directories" && ret=0 "($help -):path or URL:_directories" && ret=0
;; ;;
(commit) (commit)
_arguments $(__docker_arguments) \ __docker_container_subcommand && ret=0
$opts_help \
"($help -a --author)"{-a=,--author=}"[Author]:author: " \
"($help)*"{-c=,--change=}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \
"($help -m --message)"{-m=,--message=}"[Commit message]:message: " \
"($help -p --pause)"{-p,--pause}"[Pause container during commit]" \
"($help -):container:__docker_complete_containers" \
"($help -): :__docker_repositories_with_tags" && ret=0
;; ;;
(container) (container)
local curcontext="$curcontext" state local curcontext="$curcontext" state