DockerCLI/contrib/completion/zsh/_docker

825 lines
36 KiB
Plaintext
Raw Normal View History

#compdef docker
#
# zsh completion for docker (http://docker.com)
#
# version: 0.3.0
# github: https://github.com/felixr/docker-zsh-completion
#
# contributors:
# - Felix Riedel
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
# - Steve Durrheimer
# - Vincent Bernat
#
# license:
#
# Copyright (c) 2013, Felix Riedel
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the <organization> nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
__docker_get_containers() {
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
[[ $PREFIX = -* ]] && return 1
integer ret=1
local kind
declare -a running stopped lines args
kind=$1
shift
[[ $kind = (stopped|all) ]] && args=($args -a)
lines=(${(f)"$(_call_program commands docker $docker_options ps --no-trunc $args)"})
# Parse header line to find columns
local i=1 j=1 k header=${lines[1]}
declare -A begin end
while (( j < ${#header} - 1 )); do
i=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 1 ))
j=$(( i + ${${header[$i,-1]}[(i) ]} - 1 ))
k=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 2 ))
begin[${header[$i,$((j-1))]}]=$i
end[${header[$i,$((j-1))]}]=$k
done
end[${header[$i,$((j-1))]}]=-1 # Last column, should go to the end of the line
lines=(${lines[2,-1]})
# Container ID
local line
local s
for line in $lines; do
s="${${line[${begin[CONTAINER ID]},${end[CONTAINER ID]}]%% ##}[0,12]}"
s="$s:${(l:15:: :::)${${line[${begin[CREATED]},${end[CREATED]}]/ ago/}%% ##}}"
s="$s, ${${${line[${begin[IMAGE]},${end[IMAGE]}]}/:/\\:}%% ##}"
if [[ ${line[${begin[STATUS]},${end[STATUS]}]} = Exit* ]]; then
stopped=($stopped $s)
else
running=($running $s)
fi
done
# Names: we only display the one without slash. All other names
# are generated and may clutter the completion. However, with
# Swarm, all names may be prefixed by the swarm node name.
local -a names
for line in $lines; do
names=(${(ps:,:)${${line[${begin[NAMES]},${end[NAMES]}]}%% *}})
# First step: find a common prefix and strip it (swarm node case)
(( ${#${(u)names%%/*}} == 1 )) && names=${names#${names[1]%%/*}/}
# Second step: only keep the first name without a /
s=${${names:#*/*}[1]}
# If no name, well give up.
(( $#s != 0 )) || continue
s="$s:${(l:15:: :::)${${line[${begin[CREATED]},${end[CREATED]}]/ ago/}%% ##}}"
s="$s, ${${${line[${begin[IMAGE]},${end[IMAGE]}]}/:/\\:}%% ##}"
if [[ ${line[${begin[STATUS]},${end[STATUS]}]} = Exit* ]]; then
stopped=($stopped $s)
else
running=($running $s)
fi
done
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
[[ $kind = (running|all) ]] && _describe -t containers-running "running containers" running "$@" && ret=0
[[ $kind = (stopped|all) ]] && _describe -t containers-stopped "stopped containers" stopped "$@" && ret=0
return ret
}
__docker_stoppedcontainers() {
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
[[ $PREFIX = -* ]] && return 1
__docker_get_containers stopped "$@"
}
__docker_runningcontainers() {
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
[[ $PREFIX = -* ]] && return 1
__docker_get_containers running "$@"
}
__docker_containers() {
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
[[ $PREFIX = -* ]] && return 1
__docker_get_containers all "$@"
}
__docker_images() {
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
[[ $PREFIX = -* ]] && return 1
integer ret=1
declare -a images
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
images=(${${${(f)"$(_call_program commands docker $docker_options images)"}[2,-1]}/(#b)([^ ]##) ##([^ ]##) ##([^ ]##)*/${match[3]}:${(r:15:: :::)match[2]} in ${match[1]}})
_describe -t docker-images "images" images && ret=0
__docker_repositories_with_tags && ret=0
return ret
}
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
__docker_repositories() {
[[ $PREFIX = -* ]] && return 1
declare -a repos
repos=(${${${(f)"$(_call_program commands docker $docker_options images)"}%% *}[2,-1]})
repos=(${repos#<none>})
_describe -t docker-repos "repositories" repos
}
__docker_repositories_with_tags() {
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
[[ $PREFIX = -* ]] && return 1
integer ret=1
declare -a repos onlyrepos matched
declare m
repos=(${${${${(f)"$(_call_program commands docker $docker_options images)"}[2,-1]}/ ##/:::}%% *})
repos=(${${repos%:::<none>}#<none>})
# Check if we have a prefix-match for the current prefix.
onlyrepos=(${repos%::*})
for m in $onlyrepos; do
[[ ${PREFIX##${~~m}} != ${PREFIX} ]] && {
# Yes, complete with tags
repos=(${${repos/:::/:}/:/\\:})
_describe -t docker-repos-with-tags "repositories with tags" repos && ret=0
return ret
}
done
# No, only complete repositories
onlyrepos=(${${repos%:::*}/:/\\:})
_describe -t docker-repos "repositories" onlyrepos -qS : && ret=0
return ret
}
__docker_search() {
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
[[ $PREFIX = -* ]] && return 1
local cache_policy
zstyle -s ":completion:${curcontext}:" cache-policy cache_policy
if [[ -z "$cache_policy" ]]; then
zstyle ":completion:${curcontext}:" cache-policy __docker_caching_policy
fi
local searchterm cachename
searchterm="${words[$CURRENT]%/}"
cachename=_docker-search-$searchterm
local expl
local -a result
if ( [[ ${(P)+cachename} -eq 0 ]] || _cache_invalid ${cachename#_} ) \
&& ! _retrieve_cache ${cachename#_}; then
_message "Searching for ${searchterm}..."
result=(${${${(f)"$(_call_program commands docker $docker_options search $searchterm)"}%% *}[2,-1]})
_store_cache ${cachename#_} result
fi
_wanted dockersearch expl 'available images' compadd -a result
}
__docker_volumes() {
[[ $PREFIX = -* ]] && return 1
integer ret=1
declare -a lines volumes
lines=(${(f)"$(_call_program commands docker $docker_options volume ls)"})
# Parse header line to find columns
local i=1 j=1 k header=${lines[1]}
declare -A begin end
while (( j < ${#header} - 1 )); do
i=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 1 ))
j=$(( i + ${${header[$i,-1]}[(i) ]} - 1 ))
k=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 2 ))
begin[${header[$i,$((j-1))]}]=$i
end[${header[$i,$((j-1))]}]=$k
done
end[${header[$i,$((j-1))]}]=-1
lines=(${lines[2,-1]})
# Names
local line s
for line in $lines; do
s="${line[${begin[VOLUME NAME]},${end[VOLUME NAME]}]%% ##}"
s="$s:${(l:7:: :::)${${line[${begin[DRIVER]},${end[DRIVER]}]}%% ##}}"
volumes=($volumes $s)
done
_describe -t volumes-list "volumes" volumes && ret=0
return ret
}
__docker_volume_commands() {
local -a _docker_volume_subcommands
_docker_volume_subcommands=(
"create:Create a volume"
"inspect:Return low-level information on a volume"
"ls:List volumes"
"rm:Remove a volume"
)
_describe -t docker-volume-commands "docker volume command" _docker_volume_subcommands
}
__docker_volume_subcommand() {
local -a _command_args opts_help
local expl help="--help"
integer ret=1
opts_help=("(: -)--help[Print usage]")
case "$words[1]" in
(create)
_arguments \
$opts_help \
"($help -d --driver)"{-d,--driver=-}"[Specify volume driver name]:Driver name: " \
"($help)--name=-[Specify volume name]" \
"($help -o --opt)*"{-o,--opt=-}"[Set driver specific options]:Driver option: " && ret=0
;;
(inspect)
_arguments \
$opts_help \
"($help -f --format=-)"{-f,--format=-}"[Format the output using the given go template]:template: " \
"($help -)1:volume:__docker_volumes" && ret=0
;;
(ls)
_arguments \
$opts_help \
"($help -f --filter)*"{-f,--filter=-}"[Provide filter values (i.e. 'dangling=true')]:filter: " \
"($help -q --quiet)"{-q,--quiet}"[Only display volume names]" && ret=0
;;
(rm)
_arguments \
$opts_help \
"($help -):volume:__docker_volumes" && ret=0
;;
(help)
_arguments ":subcommand:__docker_volume_commands" && ret=0
;;
esac
return ret
}
__docker_caching_policy() {
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
oldp=( "$1"(Nmh+1) ) # 1 hour
(( $#oldp ))
}
__docker_commands() {
local cache_policy
zstyle -s ":completion:${curcontext}:" cache-policy cache_policy
if [[ -z "$cache_policy" ]]; then
zstyle ":completion:${curcontext}:" cache-policy __docker_caching_policy
fi
if ( [[ ${+_docker_subcommands} -eq 0 ]] || _cache_invalid docker_subcommands) \
&& ! _retrieve_cache docker_subcommands;
then
local -a lines
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
lines=(${(f)"$(_call_program commands docker 2>&1)"})
_docker_subcommands=(${${${lines[$((${lines[(i)Commands:]} + 1)),${lines[(I) *]}]}## #}/ ##/:})
_docker_subcommands=($_docker_subcommands 'daemon:Enable daemon mode' 'help:Show help for a command')
_store_cache docker_subcommands _docker_subcommands
fi
_describe -t docker-commands "docker command" _docker_subcommands
}
__docker_subcommand() {
local -a _command_args opts_help opts_cpumemlimit opts_create
local expl help="--help"
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
integer ret=1
opts_help=("(: -)--help[Print usage]")
opts_cpumemlimit=(
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
"($help -c --cpu-shares)"{-c,--cpu-shares=-}"[CPU shares (relative weight)]:CPU shares:(0 10 100 200 500 800 1000)"
"($help)--cgroup-parent=-[Parent cgroup for the container]:cgroup: "
"($help)--cpu-period=-[Limit the CPU CFS (Completely Fair Scheduler) period]:CPU period: "
"($help)--cpu-quota=-[Limit the CPU CFS (Completely Fair Scheduler) quota]:CPU quota: "
"($help)--cpuset-cpus=-[CPUs in which to allow execution]:CPUs: "
"($help)--cpuset-mems=-[MEMs in which to allow execution]:MEMs: "
"($help -m --memory)"{-m,--memory=-}"[Memory limit]:Memory limit: "
"($help)--memory-swap=-[Total memory limit with swap]:Memory limit: "
"($help)*--ulimit=-[ulimit options]:ulimit: "
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
)
opts_create=(
"($help -a --attach)"{-a,--attach=-}"[Attach to stdin, stdout or stderr]:device:(STDIN STDOUT STDERR)"
"($help)*--add-host=-[Add a custom host-to-IP mapping]:host\:ip mapping: "
"($help)--blkio-weight=-[Block IO (relative weight), between 10 and 1000]:Block IO weight:(10 100 500 1000)"
"($help)*--cap-add=-[Add Linux capabilities]:capability: "
"($help)*--cap-drop=-[Drop Linux capabilities]:capability: "
"($help)--cidfile=-[Write the container ID to the file]:CID file:_files"
"($help)*--device=-[Add a host device to the container]:device:_files"
"($help)*--dns=-[Set custom DNS servers]:DNS server: "
"($help)*--dns-opt=-[Set custom DNS options]:DNS option: "
"($help)*--dns-search=-[Set custom DNS search domains]:DNS domains: "
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
"($help)*"{-e,--env=-}"[Set environment variables]:environment variable: "
"($help)--entrypoint=-[Overwrite the default entrypoint of the image]:entry point: "
"($help)*--env-file=-[Read environment variables from a file]:environment file:_files"
"($help)*--expose=-[Expose a port from the container without publishing it]: "
"($help)*--group-add=-[Add additional groups to run as]:group:_groups"
"($help -h --hostname)"{-h,--hostname=-}"[Container host name]:hostname:_hosts"
"($help -i --interactive)"{-i,--interactive}"[Keep stdin open even if not attached]"
"($help)--ipc=-[IPC namespace to use]:IPC namespace: "
"($help)--kernel-memory[Kernel memory limit in bytes.]:Memory limit: "
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
"($help)*--link=-[Add link to another container]:link:->link"
"($help)*"{-l,--label=-}"[Set meta data on a container]:label: "
"($help)--log-driver=-[Default driver for container logs]:Logging driver:(json-file syslog journald gelf fluentd awslogs none)"
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
"($help)*--log-opt=-[Log driver specific options]:log driver options: "
"($help)*--lxc-conf=-[Add custom lxc options]:lxc options: "
"($help)--mac-address=-[Container MAC address]:MAC address: "
"($help)--name=-[Container name]:name: "
"($help)--net=-[Network mode]:network mode:(bridge none container host)"
"($help)--oom-kill-disable[Disable OOM Killer]"
"($help -P --publish-all)"{-P,--publish-all}"[Publish all exposed ports]"
"($help)*"{-p,--publish=-}"[Expose a container's port to the host]:port:_ports"
"($help)--pid=-[PID namespace to use]:PID: "
"($help)--privileged[Give extended privileges to this container]"
"($help)--read-only[Mount the container's root filesystem as read only]"
"($help)--restart=-[Restart policy]:restart policy:(no on-failure always)"
"($help)*--security-opt=-[Security options]:security option: "
"($help -t --tty)"{-t,--tty}"[Allocate a pseudo-tty]"
"($help -u --user)"{-u,--user=-}"[Username or UID]:user:_users"
"($help)*-v[Bind mount a volume]:volume: "
"($help)*--volumes-from=-[Mount volumes from the specified container]:volume: "
"($help -w --workdir)"{-w,--workdir=-}"[Working directory inside the container]:directory:_directories"
)
case "$words[1]" in
(attach)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help)--no-stdin[Do not attach stdin]" \
"($help)--sig-proxy[Proxy all received signals to the process (non-TTY mode only)]" \
"($help -):containers:__docker_runningcontainers" && ret=0
;;
(build)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
$opts_cpumemlimit \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
"($help -f --file)"{-f,--file=-}"[Name of the Dockerfile]:Dockerfile:_files" \
"($help)--force-rm[Always remove intermediate containers]" \
"($help)--no-cache[Do not use cache when building the image]" \
"($help)--pull[Attempt to pull a newer version of the image]" \
"($help -q --quiet)"{-q,--quiet}"[Suppress verbose build output]" \
"($help)--rm[Remove intermediate containers after a successful build]" \
"($help -t --tag)"{-t,--tag=-}"[Repository, name and tag for the image]: :__docker_repositories_with_tags" \
"($help -):path or URL:_directories" && ret=0
;;
(commit)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -a --author)"{-a,--author=-}"[Author]:author: " \
"($help -c --change)*"{-c,--change=-}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \
"($help -m --message)"{-m,--message=-}"[Commit message]:message: " \
"($help -p --pause)"{-p,--pause}"[Pause container during commit]" \
"($help -):container:__docker_containers" \
"($help -): :__docker_repositories_with_tags" && ret=0
;;
(cp)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -)1:container:->container" \
"($help -)2:hostpath:_files" && ret=0
case $state in
(container)
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
if compset -P "*:"; then
_files && ret=0
else
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
__docker_containers -qS ":" && ret=0
fi
;;
esac
;;
(create)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
$opts_cpumemlimit \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_create \
"($help -): :__docker_images" \
"($help -):command: _command_names -e" \
"($help -)*::arguments: _normal" && ret=0
case $state in
(link)
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
if compset -P "*:"; then
_wanted alias expl "Alias" compadd -E "" && ret=0
else
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
__docker_runningcontainers -qS ":" && ret=0
fi
;;
esac
;;
(daemon)
_arguments \
$opts_help \
"($help)--api-cors-header=-[Set CORS headers in the remote API]:CORS headers: " \
"($help -b --bridge)"{-b,--bridge=-}"[Attach containers to a network bridge]:bridge:_net_interfaces" \
"($help)--bip=-[Specify network bridge IP]" \
"($help -D --debug)"{-D,--debug}"[Enable debug mode]" \
"($help)--default-gateway[Container default gateway IPv4 address]:IPv4 address: " \
"($help)--default-gateway-v6[Container default gateway IPv6 address]:IPv6 address: " \
"($help)--cluster-store=-[URL of the distributed storage backend]:Cluster Store:->cluster-store" \
"($help)--cluster-advertise=-[Address of the daemon instance to advertise]:Instance to advertise (host\:port): " \
"($help)*--cluster-store-opt[Set cluster options]:Cluster options:->cluster-store-options" \
"($help)*--dns=-[DNS server to use]:DNS: " \
"($help)*--dns-search=-[DNS search domains to use]:DNS search: " \
"($help)*--dns-opt=-[DNS options to use]:DNS option: " \
"($help)*--default-ulimit=-[Set default ulimit settings for containers]:ulimit: " \
"($help)--disable-legacy-registry[Do not contact legacy registries]" \
"($help -e --exec-driver)"{-e,--exec-driver=-}"[Exec driver to use]:driver:(native lxc windows)" \
"($help)*--exec-opt=-[Set exec driver options]:exec driver options: " \
"($help)--exec-root=-[Root of the Docker execdriver]:path:_directories" \
"($help)--fixed-cidr=-[IPv4 subnet for fixed IPs]:IPv4 subnet: " \
"($help)--fixed-cidr-v6=-[IPv6 subnet for fixed IPs]:IPv6 subnet: " \
"($help -G --group)"{-G,--group=-}"[Group for the unix socket]:group:_groups" \
"($help -g --graph)"{-g,--graph=-}"[Root of the Docker runtime]:path:_directories" \
"($help -H --host)"{-H,--host=-}"[tcp://host:port to bind/connect to]:host: " \
"($help)--icc[Enable inter-container communication]" \
"($help)*--insecure-registry=-[Enable insecure registry communication]:registry: " \
"($help)--ip=-[Default IP when binding container ports]" \
"($help)--ip-forward[Enable net.ipv4.ip_forward]" \
"($help)--ip-masq[Enable IP masquerading]" \
"($help)--iptables[Enable addition of iptables rules]" \
"($help)--ipv6[Enable IPv6 networking]" \
"($help -l --log-level)"{-l,--log-level=-}"[Set the logging level]:level:(debug info warn error fatal)" \
"($help)*--label=-[Set key=value labels to the daemon]:label: " \
"($help)--log-driver=-[Default driver for container logs]:Logging driver:(json-file syslog journald gelf fluentd awslogs none)" \
"($help)*--log-opt=-[Log driver specific options]:log driver options: " \
"($help)--mtu=-[Set the containers network MTU]:mtu:(0 576 1420 1500 9000)" \
"($help -p --pidfile)"{-p,--pidfile=-}"[Path to use for daemon PID file]:PID file:_files" \
"($help)*--registry-mirror=-[Preferred Docker registry mirror]:registry mirror: " \
"($help -s --storage-driver)"{-s,--storage-driver=-}"[Storage driver to use]:driver:(aufs devicemapper btrfs zfs overlay)" \
"($help)--selinux-enabled[Enable selinux support]" \
"($help)*--storage-opt=-[Set storage driver options]:storage driver options: " \
"($help)--tls[Use TLS]" \
"($help)--tlscacert=-[Trust certs signed only by this CA]:PEM file:_files -g "*.(pem|crt)"" \
"($help)--tlscert=-[Path to TLS certificate file]:PEM file:_files -g "*.(pem|crt)"" \
"($help)--tlskey=-[Path to TLS key file]:Key file:_files -g "*.(pem|key)"" \
"($help)--tlsverify[Use TLS and verify the remote]" \
"($help)--userland-proxy[Use userland proxy for loopback traffic]" && ret=0
case $state in
(cluster-store)
if compset -P '*://'; then
_message 'host:port' && ret=0
else
store=('consul' 'etcd' 'zk')
_describe -t cluster-store "Cluster Store" store -qS "://" && ret=0
fi
;;
(cluster-store-options)
if compset -P '*='; then
_files && ret=0
else
opts=('kv.cacertfile' 'kv.certfile' 'kv.keyfile')
_describe -t cluster-store-opts "Cluster Store Options" opts -qS "=" && ret=0
fi
;;
esac
;;
(diff)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -)*:containers:__docker_containers" && ret=0
;;
(events)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help)*"{-f,--filter=-}"[Filter values]:filter: " \
"($help)--since=-[Events created since this timestamp]:timestamp: " \
"($help)--until=-[Events created until this timestamp]:timestamp: " && ret=0
;;
(exec)
local state
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -d --detach)"{-d,--detach}"[Detached mode: leave the container running in the background]" \
"($help -i --interactive)"{-i,--interactive}"[Keep stdin open even if not attached]" \
"($help)--privileged[Give extended Linux capabilities to the command]" \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
"($help -t --tty)"{-t,--tty}"[Allocate a pseudo-tty]" \
"($help -u --user)"{-u,--user=-}"[Username or UID]:user:_users" \
"($help -):containers:__docker_runningcontainers" \
"($help -)*::command:->anycommand" && ret=0
case $state in
(anycommand)
shift 1 words
(( CURRENT-- ))
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
_normal && ret=0
;;
esac
;;
(export)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -o --output)"{-o,--output=-}"[Write to a file, instead of stdout]:output file:_files" \
"($help -)*:containers:__docker_containers" && ret=0
;;
(history)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -H --human)"{-H,--human}"[Print sizes and dates in human readable format]" \
"($help)--no-trunc[Do not truncate output]" \
"($help -q --quiet)"{-q,--quiet}"[Only show numeric IDs]" \
"($help -)*: :__docker_images" && ret=0
;;
(images)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -a --all)"{-a,--all}"[Show all images]" \
"($help)--digest[Show digests]" \
"($help)*"{-f,--filter=-}"[Filter values]:filter: " \
"($help)--no-trunc[Do not truncate output]" \
"($help -q --quiet)"{-q,--quiet}"[Only show numeric IDs]" \
"($help -): :__docker_repositories" && ret=0
;;
(import)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -c --change)*"{-c,--change=-}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \
"($help -):URL:(- http:// file://)" \
"($help -): :__docker_repositories_with_tags" && ret=0
;;
(info|version)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help && ret=0
;;
(inspect)
local state
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -f --format=-)"{-f,--format=-}"[Format the output using the given go template]:template: " \
"($help)--type=-[Return JSON for specified type]:type:(image container)" \
"($help -)*: :->values" && ret=0
case $state in
(values)
if [[ ${words[(r)--type=container]} == --type=container ]]; then
__docker_containers && ret=0
elif [[ ${words[(r)--type=image]} == --type=image ]]; then
__docker_images && ret=0
else
__docker_images && __docker_containers && ret=0
fi
;;
esac
;;
(kill)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -s --signal)"{-s,--signal=-}"[Signal to send]:signal:_signals" \
"($help -)*:containers:__docker_runningcontainers" && ret=0
;;
(load)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -i --input)"{-i,--input=-}"[Read from tar archive file]:archive file:_files -g "*.((tar|TAR)(.gz|.GZ|.Z|.bz2|.lzma|.xz|)|(tbz|tgz|txz))(-.)"" && ret=0
;;
(login)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -e --email)"{-e,--email=-}"[Email]:email: " \
"($help -p --password)"{-p,--password=-}"[Password]:password: " \
"($help -u --user)"{-u,--user=-}"[Username]:username: " \
"($help -)1:server: " && ret=0
;;
(logout)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -)1:server: " && ret=0
;;
(logs)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -f --follow)"{-f,--follow}"[Follow log output]" \
"($help -s --since)"{-s,--since=-}"[Show logs since this timestamp]:timestamp: " \
"($help -t --timestamps)"{-t,--timestamps}"[Show timestamps]" \
"($help)--tail=-[Output the last K lines]:lines:(1 10 20 50 all)" \
"($help -)*:containers:__docker_containers" && ret=0
;;
(pause|unpause)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -)*:containers:__docker_runningcontainers" && ret=0
;;
(port)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -)1:containers:__docker_runningcontainers" \
"($help -)2:port:_ports" && ret=0
;;
(ps)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -a --all)"{-a,--all}"[Show all containers]" \
"($help)--before=-[Show only container created before...]:containers:__docker_containers" \
"($help)*"{-f,--filter=-}"[Filter values]:filter: " \
"($help)--format[Pretty-print containers using a Go template]:format: " \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
"($help -l --latest)"{-l,--latest}"[Show only the latest created container]" \
"($help)-n[Show n last created containers, include non-running one]:n:(1 5 10 25 50)" \
"($help)--no-trunc[Do not truncate output]" \
"($help -q --quiet)"{-q,--quiet}"[Only show numeric IDs]" \
"($help -s --size)"{-s,--size}"[Display total file sizes]" \
"($help)--since=-[Show only containers created since...]:containers:__docker_containers" && ret=0
;;
(pull)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -a --all-tags)"{-a,--all-tags}"[Download all tagged images]" \
"($help -):name:__docker_search" && ret=0
;;
(push)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -): :__docker_images" && ret=0
;;
(rename)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -):old name:__docker_containers" \
"($help -):new name: " && ret=0
;;
(restart|stop)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -t --time=-)"{-t,--time=-}"[Number of seconds to try to stop for before killing the container]:seconds to before killing:(1 5 10 30 60)" \
"($help -)*:containers:__docker_runningcontainers" && ret=0
;;
(rm)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -f --force)"{-f,--force}"[Force removal]" \
"($help -l --link)"{-l,--link}"[Remove the specified link and not the underlying container]" \
"($help -v --volumes)"{-v,--volumes}"[Remove the volumes associated to the container]" \
"($help -)*:containers:__docker_stoppedcontainers" && ret=0
;;
(rmi)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -f --force)"{-f,--force}"[Force removal]" \
"($help)--no-prune[Do not delete untagged parents]" \
"($help -)*: :__docker_images" && ret=0
;;
(run)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
$opts_cpumemlimit \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_create \
"($help -d --detach)"{-d,--detach}"[Detached mode: leave the container running in the background]" \
"($help)--rm[Remove intermediate containers when it exits]" \
"($help)--sig-proxy[Proxy all received signals to the process (non-TTY mode only)]" \
"($help)--stop-signal=-[Signal to kill a container]:signal:_signals" \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
"($help -): :__docker_images" \
"($help -):command: _command_names -e" \
"($help -)*::arguments: _normal" && ret=0
case $state in
(link)
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
if compset -P "*:"; then
_wanted alias expl "Alias" compadd -E "" && ret=0
else
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
__docker_runningcontainers -qS ":" && ret=0
fi
;;
esac
;;
(save)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -o --output)"{-o,--output=-}"[Write to file]:file:_files" \
"($help -)*: :__docker_images" && ret=0
;;
(search)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help)--automated[Only show automated builds]" \
"($help)--no-trunc[Do not truncate output]" \
"($help -s --stars)"{-s,--stars=-}"[Only display with at least X stars]:stars:(0 10 100 1000)" \
"($help -):term: " && ret=0
;;
(start)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -a --attach)"{-a,--attach}"[Attach container's stdout/stderr and forward all signals]" \
"($help -i --interactive)"{-i,--interactive}"[Attach container's stding]" \
"($help -)*:containers:__docker_stoppedcontainers" && ret=0
;;
(stats)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help)--no-stream[Disable streaming stats and only pull the first result]" \
"($help -)*:containers:__docker_runningcontainers" && ret=0
;;
(tag)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -f --force)"{-f,--force}"[force]"\
"($help -):source:__docker_images"\
"($help -):destination:__docker_repositories_with_tags" && ret=0
;;
(top)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -)1:containers:__docker_runningcontainers" \
"($help -)*:: :->ps-arguments" && ret=0
case $state in
(ps-arguments)
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
_ps && ret=0
;;
esac
;;
(volume)
local curcontext="$curcontext" state
_arguments \
$opts_help \
"($help -): :->command" \
"($help -)*:: :->option-or-argument" && ret=0
case $state in
(command)
__docker_volume_commands && ret=0
;;
(option-or-argument)
curcontext=${curcontext%:*:*}:docker-$words[-1]:
__docker_volume_subcommand && ret=0
;;
esac
;;
(wait)
_arguments \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
$opts_help \
"($help -)*:containers:__docker_runningcontainers" && ret=0
;;
(help)
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
_arguments ":subcommand:__docker_commands" && ret=0
;;
esac
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
return ret
}
_docker() {
# Support for subservices, which allows for `compdef _docker docker-shell=_docker_containers`.
# Based on /usr/share/zsh/functions/Completion/Unix/_git without support for `ret`.
if [[ $service != docker ]]; then
_call_function - _$service
return
fi
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
local curcontext="$curcontext" state line help="-h --help"
integer ret=1
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
typeset -A opt_args
_arguments -C \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
"(: -)"{-h,--help}"[Print usage]" \
"($help)--config[Location of client config files]:path:_directories" \
zsh: update zsh completion for docker command zsh completion is updated with the content of felixr/docker-zsh-completion. - felixr/docker-zsh-completion@a93e1cb7bd5a Fix completion of repositories with tags - felixr/docker-zsh-completion@590ea7059698 Respect provided `--host` flag when invoking docker - felixr/docker-zsh-completion@6c557babaa3c Several cosmetic improvements - felixr/docker-zsh-completion@5b63cc591a5c Update completion for `inspect` - felixr/docker-zsh-completion@b7d8f2f7cc92 Order completions alphabetically - felixr/docker-zsh-completion@63f6a0622496 Factor completion for `build`, `create` and `run` - felixr/docker-zsh-completion@ade49ee47f9c Enforce positional arguments being last - felixr/docker-zsh-completion@850b6b6d95e6 Update completion for build/commit/export/exec/history/import - felixr/docker-zsh-completion@01bfd8c075dc Remove completion for `insert` and duplicate of `import` - felixr/docker-zsh-completion@c64a1d730a90 Update completion for `stats` to add `--no-stream` flag - felixr/docker-zsh-completion@5e81d78b5270 Update completion for `log` to add `--since` flag - felixr/docker-zsh-completion@b3c146a1a222 Update completion for `run` to add `--group-add` flag - felixr/docker-zsh-completion@8d4f196ad825 Don't trigger expensive completion function for flags - felixr/docker-zsh-completion@bd5aaa124d9d Add completion for `--help` everywhere - felixr/docker-zsh-completion@3a67a0e8c421 Return appropriate status code on completion - felixr/docker-zsh-completion@4dfcb450eaeb Add Steve as a regular contributor. - felixr/docker-zsh-completion@996a1c6def35 Add completion for top-level flags - felixr/docker-zsh-completion@b6df75905f2e Ensure short/long option are not allowed twice - felixr/docker-zsh-completion@75b6a500a04a Complete repositories with tags only on repository match - felixr/docker-zsh-completion@5e6292135fcc Factorize completion of images/repositories/tags - felixr/docker-zsh-completion@1c504eb6779d Handle repositories with ":" - felixr/docker-zsh-completion@0a05bf818bbc Update completion for `pause' and `unpause' - felixr/docker-zsh-completion@b3a63253e2bc Containers name can include Swarm host In summary: - Swarm support - Handling repositories with ":" - Rework how completion of images/repositories/tags work: - felixr/docker-zsh-completion@5e6292135fcc - felixr/docker-zsh-completion@75b6a500a04a - felixr/docker-zsh-completion@a93e1cb7bd5a The remaining changes are here to sync changes done in Docker repository (mostly from PR #14074 and #14555, by @sdurrheimer). With some minor changes: - boolean flags don't complete their arguments (true/false) - reuse of `--host` argument is done with `$opt_arg` to avoid parsing error - build/create/run common options are factorized out - `--help` flag is handled differently - `pause` and `unpause` accepts several containers as far as I know, so the change is reverted - some more, but difficult to notice (more completion for some flags I think) Some labels are reverted, mostly because I did the merge by copy/pasting new options instead of modifying existing options. This commit is partial. The way the `--help` option is handled triggered a major change due to the way things are quoted. Those changes were partially and programmaticaly reverted in this commit only to minimize the changes to review. The next commit will restore the full changes. Signed-off-by: Vincent Bernat <vincent@bernat.im>
2015-07-16 10:18:31 -04:00
"($help -D --debug)"{-D,--debug}"[Enable debug mode]" \
"($help -H --host)"{-H,--host=-}"[tcp://host:port to bind/connect to]:host: " \
"($help -l --log-level)"{-l,--log-level=-}"[Set the logging level]:level:(debug info warn error fatal)" \
"($help)--tls[Use TLS]" \
"($help)--tlscacert=-[Trust certs signed only by this CA]:PEM file:_files -g "*.(pem|crt)"" \
"($help)--tlscert=-[Path to TLS certificate file]:PEM file:_files -g "*.(pem|crt)"" \
"($help)--tlskey=-[Path to TLS key file]:Key file:_files -g "*.(pem|key)"" \
"($help)--tlsverify[Use TLS and verify the remote]" \
"($help)--userland-proxy[Use userland proxy for loopback traffic]" \
"($help -v --version)"{-v,--version}"[Print version information and quit]" \
"($help -): :->command" \
"($help -)*:: :->option-or-argument" && ret=0
local host=${opt_args[-H]}${opt_args[--host]}
local config=${opt_args[--config]}
local docker_options="${host:+--host $host} ${config:+--config $config}"
case $state in
(command)
__docker_commands && ret=0
;;
(option-or-argument)
curcontext=${curcontext%:*:*}:docker-$words[1]:
__docker_subcommand && ret=0
;;
esac
return ret
}
_docker "$@"
# Local Variables:
# mode: Shell-Script
# sh-indentation: 4
# indent-tabs-mode: nil
# sh-basic-offset: 4
# End:
# vim: ft=zsh sw=4 ts=4 et