Updated msys2 to msys2-base-x86_64-20200903

This commit is contained in:
Gator96100 2020-09-07 18:14:14 +02:00
commit 2307d54cb1
18501 changed files with 1684082 additions and 720361 deletions

View file

@ -5,11 +5,17 @@ _tox()
local cur prev words cword
_init_completion || return
# Complete defaults following a "--"
if [[ "${words[*]:0:cword} " == *\ --\ * && $cur != -- ]]; then
compopt -o bashdefault -o default
return
fi
case $prev in
-h|--help|--version|-n|--num|-i|--index-url|--hashseed|--force-dep)
--help|--version|--num|--index-url|--hashseed|--force-dep|-!(-*)[hni])
return
;;
-c)
-!(-*)c)
_filedir ini
return
;;
@ -17,18 +23,24 @@ _tox()
_filedir
return
;;
-e)
local envs=$( "$1" --listenvs-all 2>/dev/null )
-!(-*)e)
local envs=$(
{ "$1" --listenvs-all || "$1" --listenvs; } 2>/dev/null )
[[ $envs ]] || envs=$(
command sed -e 's/,/ /g' -ne 's/^envlist[[:space:]]*=//p' \
tox.ini 2>/dev/null)
local prefix=""; [[ $cur == *,* ]] && prefix="${cur%,*},"
COMPREPLY=( $( compgen -W "$envs ALL" -- "${cur##*,}" ) )
COMPREPLY=( $(compgen -X '*[{}]*' -W "$envs ALL" -- "${cur##*,}") )
[[ ${#COMPREPLY[@]} -eq 1 ]] && COMPREPLY=( ${COMPREPLY/#/$prefix} )
return
;;
esac
if [[ $cur == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
COMPREPLY=( $(compgen -W '$(_parse_help "$1") --' -- "$cur") )
return
fi
} &&
complete -F _tox tox
# ex: filetype=sh