Move bash completion logic to new subcommand: start

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-10-20 09:11:25 +02:00 committed by Tibor Vass
parent 05656756e6
commit f58b6746d7
1 changed files with 11 additions and 11 deletions

View File

@ -1582,7 +1582,16 @@ _docker_container_run() {
}
_docker_container_start() {
_docker_start
__docker_complete_detach-keys && return
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--attach -a --detach-keys --help --interactive -i" -- "$cur" ) )
;;
*)
__docker_complete_containers_stopped
;;
esac
}
_docker_container_stats() {
@ -2900,16 +2909,7 @@ _docker_search() {
}
_docker_start() {
__docker_complete_detach-keys && return
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--attach -a --detach-keys --help --interactive -i" -- "$cur" ) )
;;
*)
__docker_complete_containers_stopped
;;
esac
_docker_container_start
}
_docker_stats() {