mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
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 ```
This commit is contained in:
parent
a9061f34d7
commit
7949a1cd8d
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ __rm() {
|
|||
|
||||
__rmi() {
|
||||
_arguments \
|
||||
'(-f,--force=)'{-f,--force=}'[Force]' \
|
||||
'(-f,--force=)'{-f,--force=}'[Force]'
|
||||
__docker_images
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue