mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 05:53:52 +01:00
11 lines
360 B
Plaintext
11 lines
360 B
Plaintext
#compdef jobs
|
|
|
|
_arguments -C -s \
|
|
"(-d -l -p -r -s *)-Z[specify string to replace shell's argument and environment with]:string" \
|
|
'(-Z)-d[show directory from which each job was started]' \
|
|
'(-Z)-l[list process IDs]' \
|
|
'(-Z)-p[list process groups]' \
|
|
'(-Z -s)-r[list only running jobs]' \
|
|
'(-Z -r)-s[list only stopped jobs]' \
|
|
'(-Z)*::job:_jobs'
|