diff options
author | Wayne <waynelkh0@gmail.com> | 2015-04-26 03:52:00 +0800 |
---|---|---|
committer | ncanceill <nicolas.canceill@ens-cachan.org> | 2015-06-10 14:36:53 +0200 |
commit | 729b19c0852b7efe7d9c63e08b676883794b90ec (patch) | |
tree | d6f2d6f34ae3f433a39dea44b333e1a5c90bf69a | |
parent | 45e3f623cc5c80eff68449a7db66829bc08d9a18 (diff) | |
download | zsh-729b19c0852b7efe7d9c63e08b676883794b90ec.tar.gz zsh-729b19c0852b7efe7d9c63e08b676883794b90ec.tar.bz2 zsh-729b19c0852b7efe7d9c63e08b676883794b90ec.zip |
Remove docker insert command
Remove the docker insert command of autocomplete
-rw-r--r-- | plugins/docker/_docker | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/plugins/docker/_docker b/plugins/docker/_docker index fd459a0ca..e95a22bfd 100644 --- a/plugins/docker/_docker +++ b/plugins/docker/_docker @@ -100,11 +100,6 @@ __info() { # no arguments } -__insert() { - __docker_images - _arguments '*:files:_files' -} - __inspect() { __docker_images __docker_all_containers @@ -278,7 +273,6 @@ _1st_arguments=( "images":"List images" "import":"Create a new filesystem image from the contents of a tarball" "info":"Display system-wide information" - "insert":"Insert a file in an image" "inspect":"Return low-level information on a container" "kill":"Kill a running container" "load":"Load an image from a tar archive" @@ -335,8 +329,6 @@ case "$words[1]" in __import ;; info) __info ;; - insert) - __insert ;; inspect) __inspect ;; kill) |