From a070f9bb56983c10d87d2d97239a7f559a7dd534 Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Tue, 15 Aug 2000 08:32:25 +0000 Subject: small improvement to allow lists where the pid is not in the first column (12635) --- ChangeLog | 5 +++++ Completion/Builtins/_pids | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f62c01f65..81b459876 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-08-15 Sven Wischnowsky + + * 12635: Completion/Builtins/_pids: small improvement to allow + lists where the pid is not in the first column + 2000-08-14 Bart Schaefer * Andrej: 12623: configure.in, Src/mkmakemod.sh, Src/zsh.h: Fix diff --git a/Completion/Builtins/_pids b/Completion/Builtins/_pids index 0d1c0fffc..3e1ad4758 100644 --- a/Completion/Builtins/_pids +++ b/Completion/Builtins/_pids @@ -9,11 +9,11 @@ _tags processes || return 1 if [[ "$1" = -m ]]; then all=() - match="[[:blank:]]#${PREFIX}[0-9]#${SUFFIX}[[:blank:]]*[/[:blank:]]${2}*" + match="*[[:blank:]]${PREFIX}[0-9]#${SUFFIX}[[:blank:]]*[/[:blank:]]${2}*" shift 2 elif [[ "$PREFIX$SUFFIX" = [0-9]# ]]; then all=() - match="[[:blank:]]#${PREFIX}[0-9]#${SUFFIX}[[:blank:]]*" + match="*[[:blank:]]${PREFIX}[0-9]#${SUFFIX}[[:blank:]]*" else all=(-U) match="*[[:blank:]]*[[/[:blank:]]$PREFIX*$SUFFIX*" -- cgit v1.2.3