Move bash completion logic to new subcommand: history
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
db31883a92
commit
9059b9532e
1 changed files with 12 additions and 12 deletions
|
@ -1951,17 +1951,7 @@ _docker_help() {
|
|||
}
|
||||
|
||||
_docker_history() {
|
||||
case "$cur" in
|
||||
-*)
|
||||
COMPREPLY=( $( compgen -W "--help --human=false -H=false --no-trunc --quiet -q" -- "$cur" ) )
|
||||
;;
|
||||
*)
|
||||
local counter=$(__docker_pos_first_nonflag)
|
||||
if [ $cword -eq $counter ]; then
|
||||
__docker_complete_images
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
_docker_image_history
|
||||
}
|
||||
|
||||
|
||||
|
@ -2067,7 +2057,17 @@ _docker_image_build() {
|
|||
}
|
||||
|
||||
_docker_image_history() {
|
||||
_docker_history
|
||||
case "$cur" in
|
||||
-*)
|
||||
COMPREPLY=( $( compgen -W "--help --human=false -H=false --no-trunc --quiet -q" -- "$cur" ) )
|
||||
;;
|
||||
*)
|
||||
local counter=$(__docker_pos_first_nonflag)
|
||||
if [ $cword -eq $counter ]; then
|
||||
__docker_complete_images
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
_docker_image_images() {
|
||||
|
|
Loading…
Reference in a new issue