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

@ -6,47 +6,47 @@ _rdesktop()
_init_completion -n : || return
case $prev in
-k)
COMPREPLY=( $( command ls \
-*k)
COMPREPLY=( $(command ls \
/usr/share/rdesktop/keymaps 2>/dev/null | \
command grep -E -v '(common|modifiers)' ) )
COMPREPLY+=( $( command ls $HOME/.rdesktop/keymaps 2>/dev/null ) )
COMPREPLY+=( $( command ls ./keymaps 2>/dev/null ) )
COMPREPLY=( $( compgen -W '${COMPREPLY[@]}' -- "$cur" ) )
command grep -E -v '(common|modifiers)') )
COMPREPLY+=( $(command ls $HOME/.rdesktop/keymaps 2>/dev/null) )
COMPREPLY+=( $(command ls ./keymaps 2>/dev/null) )
COMPREPLY=( $(compgen -W '${COMPREPLY[@]}' -- "$cur") )
return
;;
-a)
COMPREPLY=( $( compgen -W '8 15 16 24' -- "$cur" ) )
-*a)
COMPREPLY=( $(compgen -W '8 15 16 24' -- "$cur") )
return
;;
-x)
COMPREPLY=( $( compgen -W 'broadband modem lan' -- "$cur" ) )
-*x)
COMPREPLY=( $(compgen -W 'broadband modem lan' -- "$cur") )
return
;;
-r)
-*r)
case $cur in
sound:*)
COMPREPLY=( $( compgen -W 'local off remote' \
-- "${cur#sound:}" ) )
COMPREPLY=( $(compgen -W 'local off remote' \
-- "${cur#sound:}") )
;;
*:*)
;;
*)
COMPREPLY=( $( compgen -W 'comport: disk: lptport:
printer: sound: lspci scard' -- "$cur" ) )
COMPREPLY=( $(compgen -W 'comport: disk: lptport:
printer: sound: lspci scard' -- "$cur") )
[[ $COMPREPLY == *: ]] && compopt -o nospace
;;
esac
return
;;
-u|-d|-s|-c|-p|-n|-g|-S|-T|-X)
-*[udscpngSTX])
return
;;
esac
if [[ "$cur" == -* ]]; then
local opts=( $( _parse_help "$1" ) )
COMPREPLY=( $( compgen -W '${opts[@]%:}' -- "$cur" ) )
local opts=( $(_parse_help "$1") )
COMPREPLY=( $(compgen -W '${opts[@]%:}' -- "$cur") )
else
_known_hosts_real -- "$cur"
fi