mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-08-20 13:23:27 -07:00
Updated msys2 to msys2-base-x86_64-20200903
This commit is contained in:
parent
5bc8dbdc75
commit
2307d54cb1
18501 changed files with 1684082 additions and 720361 deletions
|
@ -37,18 +37,18 @@ _mr() {
|
|||
;;
|
||||
clean)
|
||||
if [[ "${cur}" == -* ]]; then
|
||||
COMPREPLY=( $( compgen -W '-f' -- "${cur}" ) )
|
||||
COMPREPLY=( $(compgen -W '-f' -- "${cur}") )
|
||||
fi
|
||||
return
|
||||
;;
|
||||
commit|ci|record)
|
||||
if [[ "${cur}" == -* ]]; then
|
||||
COMPREPLY=( $( compgen -W '-m' -- "${cur}" ) )
|
||||
COMPREPLY=( $(compgen -W '-m' -- "${cur}") )
|
||||
fi
|
||||
return
|
||||
;;
|
||||
run)
|
||||
COMPREPLY=( $( compgen -c -- "${cur}" ) )
|
||||
COMPREPLY=( $(compgen -c -- "${cur}") )
|
||||
return
|
||||
;;
|
||||
*)
|
||||
|
@ -60,11 +60,11 @@ _mr() {
|
|||
|
||||
# Complete top-level options and commands.
|
||||
case $prev in
|
||||
-c|--config)
|
||||
--config|-!(-*)c)
|
||||
_filedir
|
||||
return
|
||||
;;
|
||||
-d|--directory)
|
||||
--directory|-!(-*)d)
|
||||
_filedir -d
|
||||
return
|
||||
;;
|
||||
|
@ -76,9 +76,9 @@ _mr() {
|
|||
options="${options//-[a-z]$'\n'/}"
|
||||
# Remove deprecated options.
|
||||
options="${options//--path/}"
|
||||
COMPREPLY=( $( compgen -W "${options}" -- "${cur}" ) )
|
||||
COMPREPLY=( $(compgen -W "${options}" -- "${cur}") )
|
||||
else
|
||||
COMPREPLY=( $( compgen -W "${commands}" -- "${cur}" ) )
|
||||
COMPREPLY=( $(compgen -W "${commands}" -- "${cur}") )
|
||||
fi
|
||||
} &&
|
||||
complete -F _mr mr
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue