1
0
mirror of https://github.com/docker/cli.git synced 2026-01-19 21:41:31 +03:00

Add zsh completion for 'docker plugin install --alias'

Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
Upstream-commit: 455b7bcbabd4eb7e440448b5834f626cb08c69e0
Component: engine
This commit is contained in:
Steve Durrheimer
2017-01-03 14:46:37 +01:00
parent d6bce40c8a
commit eff5310721

View File

@@ -1497,11 +1497,17 @@ __docker_plugin_subcommand() {
opts_help=("(: -)--help[Print usage]")
case "$words[1]" in
(disable|enable|inspect|install|ls|push|rm)
(disable|enable|inspect|ls|push|rm)
_arguments $(__docker_arguments) \
$opts_help \
"($help -)1:plugin:__docker_complete_plugins" && ret=0
;;
(install)
_arguments $(__docker_arguments) \
$opts_help \
"($help)--alias=[Local name for plugin]:alias: " \
"($help -)1:plugin:__docker_complete_plugins" && ret=0
;;
(set)
_arguments $(__docker_arguments) \
$opts_help \