some additions for bash completion

Signed-off-by: Wayne Cheng <zhengwei@tiduyun.com>
This commit is contained in:
Wayne Cheng 2024-01-05 20:46:22 +08:00
parent 6fc8567ce6
commit c2919580b6
1 changed files with 12 additions and 2 deletions

View File

@ -4138,15 +4138,15 @@ _docker_manifest() {
annotate
create
inspect
ls
push
rm
ls
"
local aliases="
list
"
__docker_subcommands "$subcommands" && return
__docker_subcommands "$subcommands $aliases" && return
case "$cur" in
-*)
@ -4254,7 +4254,17 @@ _docker_manifest_rm() {
esac
}
_docker_manifest_list() {
_docker_manifest_ls
}
_docker_manifest_ls() {
case "$prev" in
--format)
return
;;
esac
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--format --help --quiet -q" -- "$cur" ) )