mirror of https://github.com/docker/cli.git
fix: remove asterisk from docker command suggestions
Some commands in the output of `docker` show up with an asterisk, like app, build, buildx or scan. This tweak removes that so that the asterisk is not filled in when choosing those commands. Signed-off-by: Marc Cornellà <hello@mcornella.com>
This commit is contained in:
parent
73b05aaa82
commit
b1f18b700e
|
@ -2653,7 +2653,7 @@ __docker_commands() {
|
||||||
then
|
then
|
||||||
local -a lines
|
local -a lines
|
||||||
lines=(${(f)"$(_call_program commands docker 2>&1)"})
|
lines=(${(f)"$(_call_program commands docker 2>&1)"})
|
||||||
_docker_subcommands=(${${${(M)${lines[$((${lines[(i)*Commands:]} + 1)),-1]}:# *}## #}/ ##/:})
|
_docker_subcommands=(${${${(M)${lines[$((${lines[(i)*Commands:]} + 1)),-1]}:# *}## #}/\*# ##/:})
|
||||||
_docker_subcommands=($_docker_subcommands 'daemon:Enable daemon mode' 'help:Show help for a command')
|
_docker_subcommands=($_docker_subcommands 'daemon:Enable daemon mode' 'help:Show help for a command')
|
||||||
(( $#_docker_subcommands > 2 )) && _store_cache docker_subcommands _docker_subcommands
|
(( $#_docker_subcommands > 2 )) && _store_cache docker_subcommands _docker_subcommands
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue