bash completion for docker search --limit

Signed-off-by: Harald Albers <github@albersweb.de>
Upstream-commit: 4b5ccd73426bcaedd69ae9f740cfaf6250276ffa
Component: engine
This commit is contained in:
Harald Albers
2016-06-03 16:32:37 +02:00
parent d64411abc7
commit 8bc106635e
@@ -1948,11 +1948,14 @@ _docker_search() {
__docker_nospace
return
;;
--limit)
return
;;
esac
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--filter --help --no-trunc" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--filter --help --limit --no-trunc" -- "$cur" ) )
;;
esac
}