mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
8 lines
137 B
Plaintext
8 lines
137 B
Plaintext
#defcomp wait
|
|
|
|
local list
|
|
|
|
complist -P '%' -j
|
|
list=("$(ps 2>/dev/null)")
|
|
complist -y '$list' -s '`ps 2>/dev/null | tail +2 | cut -c1-5`'
|