mirror of
https://git.code.sf.net/p/zsh/code
synced 2026-01-28 20:14:10 +00:00
11 lines
401 B
Plaintext
11 lines
401 B
Plaintext
#compdef choom
|
|
|
|
_arguments -S \
|
|
'(H -n --adjust)'{-n,--adjust}'+[specify the adjust score value (-1000...1000)]:score (-1000...1000)' \
|
|
'(H -p --pid)'{-p,--pid}'[interpret args as process ID]:process ID:_pids' \
|
|
'(H -p --pid):command:_command_names' \
|
|
'*::arguments:_normal' \
|
|
+ 'H' \
|
|
'(- *)'{-V,--version}'[display version information]' \
|
|
'(- *)'{-h,--help}'[display help information]'
|