Add bash completion for `search --format`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-09-04 18:21:47 +02:00
parent 38c1895021
commit f6219ac3c6
1 changed files with 2 additions and 2 deletions

View File

@ -4287,14 +4287,14 @@ _docker_search() {
__docker_nospace __docker_nospace
return return
;; ;;
--limit) --format|--limit)
return return
;; ;;
esac esac
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "--filter --help --limit --no-trunc" -- "$cur" ) ) COMPREPLY=( $( compgen -W "--filter -f --format --help --limit --no-trunc" -- "$cur" ) )
;; ;;
esac esac
} }