1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #23238 from albers/completion-search--limit

bash completion for `docker search --limit`
This commit is contained in:
Brian Goff 2016-06-03 12:13:27 -04:00
commit b0a949e3c9

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
} }