mirror of https://github.com/docker/cli.git
Add bash completion for `history --format`
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
137a190a79
commit
38dcfad556
|
@ -2299,9 +2299,15 @@ _docker_image_build() {
|
||||||
}
|
}
|
||||||
|
|
||||||
_docker_image_history() {
|
_docker_image_history() {
|
||||||
|
case "$prev" in
|
||||||
|
--format)
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
-*)
|
-*)
|
||||||
COMPREPLY=( $( compgen -W "--help --human=false -H=false --no-trunc --quiet -q" -- "$cur" ) )
|
COMPREPLY=( $( compgen -W "--format --help --human=false -H=false --no-trunc --quiet -q" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
local counter=$(__docker_pos_first_nonflag)
|
local counter=$(__docker_pos_first_nonflag)
|
||||||
|
|
Loading…
Reference in New Issue