1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-22 03:40:47 +02:00
zsh/Completion/Zsh/Command/_jobs_builtin

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'