mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-09 12:23:15 -08:00
12 lines
238 B
Plaintext
12 lines
238 B
Plaintext
#compdef paclist
|
|
|
|
declare -a args
|
|
args=(
|
|
'(-)'{--help,-h}'[display help message and exit]'
|
|
'(-)'{--version,-V}'[display version information and exit]'
|
|
|
|
'*:repository:{_values repository $(pacman-conf --repo-list)}'
|
|
)
|
|
|
|
_arguments $args
|