Move zsh completion logic to new subcommand: import
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
This commit is contained in:
parent
2014e78730
commit
a4656e46f7
1 changed files with 7 additions and 7 deletions
|
@ -933,7 +933,12 @@ __docker_image_subcommand() {
|
|||
"($help -)*: :__docker_complete_images" && ret=0
|
||||
;;
|
||||
(import)
|
||||
__docker_subcommand && ret=0
|
||||
_arguments $(__docker_arguments) \
|
||||
$opts_help \
|
||||
"($help)*"{-c=,--change=}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \
|
||||
"($help -m --message)"{-m=,--message=}"[Commit message for imported image]:message: " \
|
||||
"($help -):URL:(- http:// file://)" \
|
||||
"($help -): :__docker_complete_repositories_with_tags" && ret=0
|
||||
;;
|
||||
(inspect)
|
||||
__docker_subcommand && ret=0
|
||||
|
@ -2093,12 +2098,7 @@ __docker_subcommand() {
|
|||
esac
|
||||
;;
|
||||
(import)
|
||||
_arguments $(__docker_arguments) \
|
||||
$opts_help \
|
||||
"($help)*"{-c=,--change=}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \
|
||||
"($help -m --message)"{-m=,--message=}"[Commit message for imported image]:message: " \
|
||||
"($help -):URL:(- http:// file://)" \
|
||||
"($help -): :__docker_complete_repositories_with_tags" && ret=0
|
||||
__docker_image_subcommand && ret=0
|
||||
;;
|
||||
(info|version)
|
||||
_arguments $(__docker_arguments) \
|
||||
|
|
Loading…
Add table
Reference in a new issue