diff options
author | Oliver Kiddle <opk@zsh.org> | 2015-06-19 19:46:01 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2015-06-19 19:46:01 +0200 |
commit | aea461e542ba99182b7ab36f79b230d185258ec7 (patch) | |
tree | 7f957c71698623ec050e4b356f6e430551b368c0 /Completion | |
parent | 98687fa1dec803f041cbb5417c146d8aa5129b53 (diff) | |
download | zsh-aea461e542ba99182b7ab36f79b230d185258ec7.tar.gz zsh-aea461e542ba99182b7ab36f79b230d185258ec7.tar.xz zsh-aea461e542ba99182b7ab36f79b230d185258ec7.zip |
35528: allow for IPREFIX
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Type/_pids | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Type/_pids b/Completion/Unix/Type/_pids index cf9000538..dd8ef441b 100644 --- a/Completion/Unix/Type/_pids +++ b/Completion/Unix/Type/_pids @@ -15,7 +15,7 @@ elif [[ "$PREFIX$SUFFIX" = ([%-]*|[0-9]#) ]]; then all=() match="(*[[:blank:]]|)${PREFIX}[0-9]#${SUFFIX}[[:blank:]]*" else - all=(-U) + all=(-P "$IPREFIX" -S "$ISUFFIX" -U) match="*[[:blank:]]*[[/[:blank:]]$PREFIX*$SUFFIX*" nm="$compstate[nmatches]" fi |