From b02c1ec19aad941dc5f2cc28c92934d0bde3f54c Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Tue, 23 Nov 1999 11:37:04 +0000 Subject: zsh-workers/8742 --- Completion/Builtins/_pids | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Completion/Builtins/_pids b/Completion/Builtins/_pids index 3fd71fb84..d383d6b99 100644 --- a/Completion/Builtins/_pids +++ b/Completion/Builtins/_pids @@ -17,11 +17,11 @@ _style -a ps arguments args (( $#listargs )) || listargs=( "$args[@]" ) if _style processes verbose; then - list=("${(@Mr:COLUMNS-1:)${(f@)$(ps $listargs 2>/dev/null)}[2,-1]:#[ ]#${PREFIX}[0-9]#${SUFFIX}[ ]*${~match}}") + list=("${(@Mr:COLUMNS-1:)${(f@)$(command ps $listargs 2>/dev/null)}[2,-1]:#[ ]#${PREFIX}[0-9]#${SUFFIX}[ ]*${~match}}") desc=(-ld list) else desc=() fi compadd "$expl[@]" "$@" "$desc[@]" - \ - ${${${(M)${(f)"$(ps $args 2>/dev/null)"}[2,-1]:#*${~match}}## #}%% *} + ${${${(M)${(f)"$(command ps $args 2>/dev/null)"}[2,-1]:#[ ]#${PREFIX}[0-9]#${SUFFIX}[ ]#*${~match}}## #}%% *} -- cgit 1.4.1