mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 05:53:52 +01:00
22 lines
458 B
Plaintext
22 lines
458 B
Plaintext
|
#compdef sched
|
||
|
|
||
|
local expl lines disp
|
||
|
|
||
|
if [[ CURRENT -eq 2 ]]; then
|
||
|
if compset -P -; then
|
||
|
lines=(${(f)"$(sched)"})
|
||
|
if zstyle -T ":completion:${curcontext}:jobs" verbose; then
|
||
|
disp=( -ld lines )
|
||
|
else
|
||
|
disp=()
|
||
|
fi
|
||
|
[[ -z $lines ]] || _wanted jobs expl 'scheduled jobs' \
|
||
|
compadd "$disp[@]" - {1..$#lines}
|
||
|
return
|
||
|
else
|
||
|
_message 'time specification'
|
||
|
return 1
|
||
|
fi
|
||
|
fi
|
||
|
compset -n 3 && _normal
|