mirror of https://github.com/ohmyzsh/ohmyzsh.git
Fix `docker rmi` tab completion
This is exactly what happens on tab completion for docker rmi. This commit fixes that. ```sh $ docker rmi <hit TAB> _arguments:comparguments:312: invalid argument: __docker_images _arguments:comparguments:312: invalid argument: __docker_images _arguments:comparguments:312: invalid argument: __docker_images ```pull/2693/head
parent
a9061f34d7
commit
7949a1cd8d
|
@ -166,7 +166,7 @@ __rm() {
|
|||
|
||||
__rmi() {
|
||||
_arguments \
|
||||
'(-f,--force=)'{-f,--force=}'[Force]' \
|
||||
'(-f,--force=)'{-f,--force=}'[Force]'
|
||||
__docker_images
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue