about summary refs log tree commit diff
path: root/Completion/Zsh/Command/_kill
blob: 3b5c02151bcad8e6df17a2fbfc86f73661d6042a (plain) (blame)
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