1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-06-15 20:38:10 +02:00
zsh/Completion/Zsh/Command/_kill
Oliver Kiddle 5331ff11c6 52594: support for POSIX real-time signals with kill and trap
Also add new -L option to kill for a more verbose listing of signals
2024-02-28 00:21:11 +01:00

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