mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-12-26 20:31:15 +01:00
Remove docker insert command
Remove the docker insert command of autocomplete
This commit is contained in:
parent
45e3f623cc
commit
729b19c085
1 changed files with 0 additions and 8 deletions
|
@ -100,11 +100,6 @@ __info() {
|
||||||
# no arguments
|
# no arguments
|
||||||
}
|
}
|
||||||
|
|
||||||
__insert() {
|
|
||||||
__docker_images
|
|
||||||
_arguments '*:files:_files'
|
|
||||||
}
|
|
||||||
|
|
||||||
__inspect() {
|
__inspect() {
|
||||||
__docker_images
|
__docker_images
|
||||||
__docker_all_containers
|
__docker_all_containers
|
||||||
|
@ -278,7 +273,6 @@ _1st_arguments=(
|
||||||
"images":"List images"
|
"images":"List images"
|
||||||
"import":"Create a new filesystem image from the contents of a tarball"
|
"import":"Create a new filesystem image from the contents of a tarball"
|
||||||
"info":"Display system-wide information"
|
"info":"Display system-wide information"
|
||||||
"insert":"Insert a file in an image"
|
|
||||||
"inspect":"Return low-level information on a container"
|
"inspect":"Return low-level information on a container"
|
||||||
"kill":"Kill a running container"
|
"kill":"Kill a running container"
|
||||||
"load":"Load an image from a tar archive"
|
"load":"Load an image from a tar archive"
|
||||||
|
@ -335,8 +329,6 @@ case "$words[1]" in
|
||||||
__import ;;
|
__import ;;
|
||||||
info)
|
info)
|
||||||
__info ;;
|
__info ;;
|
||||||
insert)
|
|
||||||
__insert ;;
|
|
||||||
inspect)
|
inspect)
|
||||||
__inspect ;;
|
__inspect ;;
|
||||||
kill)
|
kill)
|
||||||
|
|
Loading…
Reference in a new issue