Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] _multi_parts: Improve match performance
- X-seq: zsh-workers 43930
- From: dana <dana@xxxxxxx>
- To: Zsh workers <zsh-workers@xxxxxxx>
- Subject: [PATCH] _multi_parts: Improve match performance
- Date: Sun, 23 Dec 2018 05:56:43 -0600
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=dana-is.20150623.gappssmtp.com; s=20150623; h=from:content-transfer-encoding:mime-version:subject:message-id:date :to; bh=fHMJGmhfFpZPSlozuKhcWqqMa3TlBClWrVltXdiXOgg=; b=jth0XiczJj4zy+ckmT7TJwihR07H5RlPOO3GCavuIjwG6EZyQuXKNvGC5LJ3WaKj+x N+2xr387/DEO4neizLqIcqARY4VexGVTRRUuzG/BoeXHz268TJO04LP2wtjKzVMCvWNF +tUDcMAcGqh3VBftUeLcSMTVoUBkHL3JpLt3sulOyLBy9yFw22RxaTpEM6HQma1LHGpF CTtqC8YhBtd168leLdJWSO6g3SvND4dvF9nOAgr/0KQj2YqoSESqpbIVpYcQbXMsGvXK 4GwBH9Xuvn+bS+XWPvESAl85KLzYcmig6vRMHR35iGgKSk8z7PwVX0L2/z8YPfJSFkoK 9qGA==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
Re: workers/43914: The hanging loop i mentioned was actually introduced in
workers/28186. Before that it used an array filter with a pattern match, but
that had to be removed due to problems with special characters. Now that we
have the (b) flag, we can put it back. It's much faster.
I also mentioned skipping the check entirely when there's no prefix or suffix
currently on the command line, and after testing various scenarios with it i
*think* that's OK to do. So i did that as well
dana
diff --git a/Completion/Base/Utility/_multi_parts b/Completion/Base/Utility/_multi_parts
index 3e2f36c9c..12ff965ed 100644
--- a/Completion/Base/Utility/_multi_parts
+++ b/Completion/Base/Utility/_multi_parts
@@ -127,8 +127,7 @@ while true; do
return
fi
elif (( $#tmp1 )); then
- local ret=1 tt
- local -a mm
+ local ret=1
# More than one match. First we get all strings that match the
# rest from the line.
@@ -145,11 +144,14 @@ while true; do
SUFFIX="$suf"
fi
- for tt in $tmp1
- do
- mm+=( "${(@M)matches:#$tt*}" )
- done
- matches=( $mm )
+ # The purpose of this check (or one purpose, anyway) seems to be to ensure
+ # that the suffix for the current segment on the command line doesn't
+ # match across segments. For example, we want $matches for a<TAB>c to
+ # include abc/d, but not abd/c. If we don't have anything on the command
+ # line for this segment, though, we can skip it. (The difference is only
+ # noticeable when there are a huge number of possibilities)
+ [[ -n $pre$suf ]] &&
+ matches=( ${(@M)matches:#(${(j<|>)~${(@b)tmp1}})*} )
if ! zstyle -t ":completion:${curcontext}:" expand suffix ||
[[ -n "$menu" || -z "$compstate[insert]" ]]; then
Messages sorted by:
Reverse Date,
Date,
Thread,
Author