blob: af88a5920e3deb01242e27677984ee2e6cc3560e (
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
25
26
27
|
#autoload
# If given the `-m <pattern>' option, this tries to complete only pids
# of processes whose command line match the `<pattern>'.
local list expl match desc listargs args
_wanted processes expl 'process ID' || return 1
if [[ "$1" = -m ]]; then
match="${2}*"
shift 2
fi
zstyle -a ":completion${curcontext}:ps" list-arguments listargs
zstyle -a ":completion${curcontext}:ps" arguments args
(( $#listargs )) || listargs=( "$args[@]" )
if zstyle -t ":completion${curcontext}:processes" verbose; then
list=("${(@Mr:COLUMNS-1:)${(f@)$(command ps $listargs 2>/dev/null)}[2,-1]:#[ ]#${PREFIX}[0-9]#${SUFFIX}[ ]*${~match}}")
desc=(-ld list)
else
desc=()
fi
compadd "$expl[@]" "$@" "$desc[@]" - \
${${${(M)${(f)"$(command ps $args 2>/dev/null)"}[2,-1]:#[ ]#${PREFIX}[0-9]#${SUFFIX}[ ]#*${~match}}## #}%% *}
|