zsh-workers
 help / color / mirror / code / Atom feed
3b5c02151bcad8e6df17a2fbfc86f73661d6042a blob 815 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
#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
debug log:

solving 3b5c02151 ...
found 3b5c02151 in https://git.vuxu.org/mirror/zsh/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).