bash completion for docker search --limit

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-06-03 16:32:37 +02:00 committed by Tibor Vass
parent 57b18d5474
commit ae11c80580

View File

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