mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-24 11:42:59 -08:00
13 lines
248 B
Plaintext
13 lines
248 B
Plaintext
#compdef pacsearch
|
|
|
|
declare -a args
|
|
args=(
|
|
'(--nocolor -n)'{--nocolor,-n}'[do not colorize output]'
|
|
'(-)'{--help,-h}'[display help message and exit]'
|
|
'(-)'{--version,-V}'[display version information and exit]'
|
|
|
|
':pattern: '
|
|
)
|
|
|
|
_arguments $args
|