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

@ -2,8 +2,8 @@
_xdg_mime_mimetype()
{
COMPREPLY+=( $( compgen -S / -W 'application audio font image message model
multipart text video' -- "$cur" ) )
COMPREPLY+=( $(compgen -S / -W 'application audio font image message model
multipart text video' -- "$cur") )
[[ $COMPREPLY == */ ]] && compopt -o nospace
}
@ -17,18 +17,18 @@ _xdg_mime()
if [[ $args -eq 1 ]]; then
if [[ $cur == -* ]]; then
COMPREPLY=( $( compgen -W '--help --manual --version' -- "$cur" ) )
COMPREPLY=( $(compgen -W '--help --manual --version' -- "$cur") )
return
fi
COMPREPLY=( $( compgen -W \
'query default install uninstall' -- "$cur" ) )
COMPREPLY=( $(compgen -W \
'query default install uninstall' -- "$cur") )
return
fi
case ${words[1]} in
query)
if [[ $args -eq 2 ]]; then
COMPREPLY=( $( compgen -W 'filetype default' -- "$cur" ) )
COMPREPLY=( $(compgen -W 'filetype default' -- "$cur") )
return
fi
case ${words[2]} in # TODO and $args -eq 3 (takes only one arg!)
@ -43,25 +43,25 @@ _xdg_mime()
desktops=( "${desktops[@]##*/}" )
$reset
IFS=$'\n'
COMPREPLY=( $( compgen -W '${desktops[@]}' -- "$cur" ) )
COMPREPLY=( $(compgen -W '${desktops[@]}' -- "$cur") )
else
_xdg_mime_mimetype
fi
;;
install)
if [[ $cur == -* ]]; then
COMPREPLY=( $( compgen -W '--mode --novendor' -- "$cur" ) )
COMPREPLY=( $(compgen -W '--mode --novendor' -- "$cur") )
elif [[ $prev == --mode ]]; then
COMPREPLY=( $( compgen -W 'user system' -- "$cur" ) )
COMPREPLY=( $(compgen -W 'user system' -- "$cur") )
else
_filedir xml
fi
;;
uninstall)
if [[ $cur == -* ]]; then
COMPREPLY=( $( compgen -W '--mode' -- "$cur" ) )
COMPREPLY=( $(compgen -W '--mode' -- "$cur") )
elif [[ $prev == --mode ]]; then
COMPREPLY=( $( compgen -W 'user system' -- "$cur" ) )
COMPREPLY=( $(compgen -W 'user system' -- "$cur") )
else
_filedir xml
fi
@ -69,3 +69,5 @@ _xdg_mime()
esac
} &&
complete -F _xdg_mime xdg-mime
# ex: filetype=sh