diff options
Diffstat (limited to 'Completion/Builtins/_wait')
-rw-r--r-- | Completion/Builtins/_wait | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Completion/Builtins/_wait b/Completion/Builtins/_wait index 8f9339ebd..bcd39963f 100644 --- a/Completion/Builtins/_wait +++ b/Completion/Builtins/_wait @@ -11,10 +11,12 @@ # options for the ps command that are to be used when creating # the list to display during completion. -local list ret=1 +local list ret=1 expl -compgen -P '%' -j && ret=0 +_description expl job +compgen "$expl[@]" -P '%' -j && ret=0 list=("${(@Mr:COLUMNS-1:)${(f)$(ps ${compconfig[ps_listargs]:-$compconfig[ps_args]} 2>/dev/null)}[2,-1]:#[ ]#${PREFIX}[0-9]#${SUFFIX}[ ]*}") -compadd -y list - ${${${(f)"$(ps $compconfig[ps_args] 2>/dev/null)"}[2,-1]## #}%% *} && ret=0 +_description expl 'process ID' +compadd "$expl[@]" -y list - ${${${(f)"$(ps $compconfig[ps_args] 2>/dev/null)"}[2,-1]## #}%% *} && ret=0 return ret |