mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-09 12:23:15 -08:00
16 lines
327 B
Plaintext
16 lines
327 B
Plaintext
#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
|