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

@ -8,23 +8,23 @@ _fbgs()
case "$prev" in
-f|--font)
local IFS=$'\n'
COMPREPLY=( $( compgen -W '$( fc-list 2>/dev/null )' -- "$cur" ) )
COMPREPLY=( $(compgen -W '$(fc-list 2>/dev/null)' -- "$cur") )
return
;;
-m|--mode)
COMPREPLY=( $( compgen -W '$( command sed \
COMPREPLY=( $(compgen -W '$(command sed \
-n "/^mode/{s/^mode \{1,\}\"\([^\"]\{1,\}\)\"/\1/g;p}" \
/etc/fb.modes 2> /dev/null )' -- "$cur" ) )
/etc/fb.modes 2>/dev/null)' -- "$cur") )
return
;;
-d|--device)
COMPREPLY=( $( compgen -f -d -- "${cur:-/dev/}" ) )
COMPREPLY=( $(compgen -f -d -- "${cur:-/dev/}") )
return
;;
-fp|--firstpage|-lp|--lastpage|-r|--resolution|-s|--scroll|-t|\
--timeout)
# expect integer value
COMPREPLY+=( $( compgen -W '{0..9}' ) )
COMPREPLY+=( $(compgen -W '{0..9}') )
compopt -o nospace
return
;;
@ -35,11 +35,11 @@ _fbgs()
esac
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--bell --help --password -fp --firstpage
COMPREPLY=( $(compgen -W '--bell --help --password -fp --firstpage
-lp --lastpage --color -l -xl -xxl --resolution --autozoom
--{,no}autoup --{,no}autodown --{,no}fitwidth --{,no}verbose
--{,no}random --vt --scroll --timeout --{,no}once --gamma --font
--device --mode' -- "$cur" ) )
--device --mode' -- "$cur") )
[[ $COMPREPLY ]] && return
fi