diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:30:01 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:30:01 +0000 |
commit | c0d6a36596443daa4c708820230bab3d3caeb2c0 (patch) | |
tree | ea8e74819f58082c3c52015293828f275c080da3 /Completion | |
parent | 6ca0698b5e29b910702393a99847eef361ef1015 (diff) | |
download | zsh-c0d6a36596443daa4c708820230bab3d3caeb2c0.tar.gz zsh-c0d6a36596443daa4c708820230bab3d3caeb2c0.tar.xz zsh-c0d6a36596443daa4c708820230bab3d3caeb2c0.zip |
moved from Completion/Builtins/_sched
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Zsh/Command/_sched | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Completion/Zsh/Command/_sched b/Completion/Zsh/Command/_sched new file mode 100644 index 000000000..82b8a7c91 --- /dev/null +++ b/Completion/Zsh/Command/_sched @@ -0,0 +1,21 @@ +#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 |