????

Your IP : 3.144.229.52


Current Path : C:/opt/msys64/usr/share/zsh/site-functions/
Upload File :
Current File : C:/opt/msys64/usr/share/zsh/site-functions/_pacscripts

#compdef pacscripts

_pacscripts_packages() {
	_values package $(pacman -Slq)
}

declare -a args
args=(
	'(-)'{--help,-h}'[display help message and exit]'
	'(-)'{--version,-V}'[display version information and exit]'

	':package:{_alternative "packages:package:_pacscripts_packages" "files:pkgfile:_files"}'
)

_arguments $args