mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-06-15 20:38:10 +02:00
24 lines
815 B
Text
24 lines
815 B
Text
#compdef kill
|
|
|
|
local curcontext="$curcontext" line state ret=1
|
|
typeset -A opt_args
|
|
|
|
_arguments -C \
|
|
'(-s -l -L 1)-n[specify signal number]:signal number' \
|
|
'(-l -L)-q[send the specified integer with the signal using sigqueue]:value' \
|
|
'(-n -l -L 1)-s[specify signal name]:signal:_signals -s' \
|
|
'-l[list signal names or numbers of specified signals]:*:signal:_signals' \
|
|
'(- *)-L[list each signal and corresponding number]' \
|
|
'(-n -s -l)1::signal:_signals -p -s' \
|
|
'*:processes:->processes' && ret=0
|
|
|
|
if [[ -n "$state" ]]; then
|
|
local pgrp='process-groups:: _wanted '
|
|
[[ -n "$opt_args[(i)-[ns]]${${(@)line:#--}}" && -prefix - ]] && pgrp+='-x '
|
|
pgrp+="process-groups expl 'process-group' compadd - 0"
|
|
_alternative \
|
|
'processes:: _pids' \
|
|
'jobs:: _jobs -t' $pgrp && ret=0
|
|
fi
|
|
|
|
return ret
|