Merge pull request #23238 from albers/completion-search--limit
bash completion for `docker search --limit`
This commit is contained in:
commit
b0a949e3c9
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue