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

@ -11,22 +11,22 @@ _fbi()
return
;;
-r|--resolution)
COMPREPLY+=( $( compgen -W '{1..5}' ) )
COMPREPLY+=( $(compgen -W '{1..5}') )
return
;;
-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
;;
--cachemem|--blend|-T|--vt|-s|--scroll|-t|--timeout|-g|--gamma)
@ -36,12 +36,12 @@ _fbi()
esac
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--help --version --store --list --text
COMPREPLY=( $(compgen -W '--help --version --store --list --text
--autozoom --{,no}autoup --{,no}autodown --{,no}fitwidth
--{,no}verbose --{,no}random --{,no}comments --{,no}edit
--{,no}backup --{,no}preserve --{,no}readahead --cachemem --blend
--vt --scroll --timeout --{,no}once --resolution --gamma --font
--device --mode' -- "$cur" ) )
--device --mode' -- "$cur") )
[[ $COMPREPLY ]] && return
fi