mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
optimisations for _multi_parts (12354)
This commit is contained in:
parent
36052b318b
commit
0e8c318b8e
@ -1,3 +1,8 @@
|
||||
2000-07-24 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 12354: Completion/Core/_multi_parts: optimisations for
|
||||
_multi_parts
|
||||
|
||||
2000-07-22 Clint Adams <schizo@debian.org>
|
||||
|
||||
* 12347: Completion/User/_mutt: options -a, -b, and -c are
|
||||
|
@ -7,9 +7,9 @@
|
||||
# The parts of words from the array that are separated by the
|
||||
# separator character are then completed independently.
|
||||
|
||||
local sep matches pref npref i tmp1 group expl menu pre suf opre osuf cpre
|
||||
local sep pref npref i tmp2 group expl menu pre suf opre osuf cpre
|
||||
local opts sopts matcher imm
|
||||
typeset -U tmp2
|
||||
typeset -U tmp1 matches
|
||||
|
||||
# Get the options.
|
||||
|
||||
@ -25,15 +25,15 @@ else
|
||||
fi
|
||||
|
||||
# Get the arguments, first the separator, then the array. The array is
|
||||
# stored in `matches'. Further on this array will always contain those
|
||||
# words from the original array that still match everything we have
|
||||
# stored in `tmp1'. Further on the array `matches' will always contain
|
||||
# those words from the original array that still match everything we have
|
||||
# tried to match while we walk through the string from the line.
|
||||
|
||||
sep="$1"
|
||||
if [[ "${2[1]}" = '(' ]]; then
|
||||
matches=( ${=2[2,-2]} )
|
||||
tmp1=( ${=2[2,-2]} )
|
||||
else
|
||||
matches=( "${(@P)2}" )
|
||||
tmp1=( "${(@P)2}" )
|
||||
fi
|
||||
|
||||
# In `pre' and `suf' we will hold the prefix and the suffix from the
|
||||
@ -59,9 +59,9 @@ pref=''
|
||||
# If the string from the line matches at least one of the strings,
|
||||
# we use only the matching strings.
|
||||
|
||||
compadd -O tmp1 -M "r:|${sep}=* r:|=* $matcher" -a matches
|
||||
compadd -O matches -M "r:|${sep}=* r:|=* $matcher" -a tmp1
|
||||
|
||||
(( $#tmp1 )) && matches=( "$tmp1[@]" )
|
||||
(( $#matches )) || matches=( "$tmp1[@]" )
|
||||
|
||||
while true; do
|
||||
|
||||
@ -96,8 +96,6 @@ while true; do
|
||||
[[ $#tmp1 -eq 0 && -n "$_comp_correct" ]] &&
|
||||
compadd -O tmp1 - "${(@)matches%%${sep}*}"
|
||||
|
||||
tmp2=( "$tmp1[@]" )
|
||||
|
||||
if [[ $#tmp1 -eq 1 ]]; then
|
||||
|
||||
# Only one match. If there are still separators from the line
|
||||
@ -118,9 +116,7 @@ while true; do
|
||||
compadd "$group[@]" "$expl[@]" "$opts[@]" \
|
||||
-M "r:|${sep}=* r:|=* $matcher" - "$pref$matches[1]"
|
||||
else
|
||||
tmp2=( "${(@M)matches:#${tmp1[1]}${sep}*}" )
|
||||
|
||||
if (( $#tmp2 )); then
|
||||
if (( $matches[(I)${tmp1[1]}${sep}*] )); then
|
||||
compadd "$group[@]" "$expl[@]" -p "$pref" -r "$sep" -S "$sep" "$opts[@]" \
|
||||
-M "r:|${sep}=* r:|=* $matcher" - "$tmp1[1]"
|
||||
else
|
||||
@ -148,6 +144,8 @@ while true; do
|
||||
SUFFIX="$suf"
|
||||
fi
|
||||
|
||||
matches=( "${(@M)matches:#(${(j:|:)~tmp1})*}" )
|
||||
|
||||
if ! zstyle -t ":completion:${curcontext}:" expand suffix ||
|
||||
[[ -n "$menu" || -z "$compstate[insert]" ]]; then
|
||||
|
||||
@ -161,44 +159,33 @@ while true; do
|
||||
else
|
||||
tmp2=()
|
||||
fi
|
||||
for i in "${(@M)matches:#(${(j:|:)~tmp1})*}"; do
|
||||
case "$i" in
|
||||
*${sep})
|
||||
compadd "$group[@]" "$expl[@]" -r "$sep" -S "$sep" "$opts[@]" \
|
||||
-p "$pref" \
|
||||
-M "r:|${sep}=* r:|=* $matcher" - "${i%%${sep}*}" && ret=0
|
||||
;;
|
||||
${sep}*)
|
||||
|
||||
|
||||
compadd "$group[@]" "$expl[@]" -r "$sep" -S "$sep" "$opts[@]" \
|
||||
-p "$pref" "$tmp2[@]" -M "r:|${sep}=* r:|=* $matcher" - \
|
||||
"${(@)${(@M)matches:#*${sep}}%%${sep}*}" && ret=0
|
||||
(( $matches[(I)${sep}*] )) &&
|
||||
compadd "$group[@]" "$expl[@]" -S '' "$opts[@]" \
|
||||
-p "$pref" \
|
||||
-M "r:|${sep}=* r:|=* $matcher" - "$sep" && ret=0
|
||||
;;
|
||||
*${sep}*)
|
||||
compadd "$group[@]" "$expl[@]" -r "$sep" -S "$sep" "$opts[@]" \
|
||||
-p "$pref" \
|
||||
-M "r:|${sep}=* r:|=* $matcher" - "${i%%${sep}*}" && ret=0
|
||||
;;
|
||||
*)
|
||||
compadd "$group[@]" "$expl[@]" -S '' "$opts[@]" -p "$pref" \
|
||||
-M "r:|${sep}=* r:|=* $matcher" - "$i" && ret=0
|
||||
;;
|
||||
esac
|
||||
done
|
||||
compadd "$group[@]" "$expl[@]" -r "$sep" -S "$sep" "$opts[@]" \
|
||||
-p "$pref" "$tmp2[@]" -M "r:|${sep}=* r:|=* $matcher" - \
|
||||
"${(@)${(@M)matches:#*?${sep}?*}%%${sep}*}" && ret=0
|
||||
compadd "$group[@]" "$expl[@]" -S '' "$opts[@]" -p "$pref" "$tmp2[@]" \
|
||||
-M "r:|${sep}=* r:|=* $matcher" - \
|
||||
"${(@)matches:#*${sep}*}" && ret=0
|
||||
else
|
||||
# With normal completion we add all matches one-by-one with
|
||||
# the unmatched part as a suffix. This will insert the longest
|
||||
# unambiguous string for all matching strings.
|
||||
|
||||
for i in "${(@M)matches:#(${(j:|:)~tmp1})*}"; do
|
||||
if [[ "$i" = *${sep}* ]]; then
|
||||
compadd "$group[@]" "$expl[@]" "$opts[@]" \
|
||||
-p "$pref" -s "${i#*${sep}}" \
|
||||
-M "r:|${sep}=* r:|=* $matcher" - "${i%%${sep}*}" && ret=0
|
||||
else
|
||||
compadd "$group[@]" "$expl[@]" -S '' "$opts[@]" -p "$pref" \
|
||||
-M "r:|${sep}=* r:|=* $matcher" - "$i" && ret=0
|
||||
fi
|
||||
done
|
||||
compadd "$group[@]" "$expl[@]" "$opts[@]" \
|
||||
-p "$pref" -s "${i#*${sep}}" \
|
||||
-M "r:|${sep}=* r:|=* $matcher" - \
|
||||
"${(@)${(@M)matches:#*${sep}*}%%${sep}*}" && ret=0
|
||||
compadd "$group[@]" "$expl[@]" -S '' "$opts[@]" -p "$pref" \
|
||||
-M "r:|${sep}=* r:|=* $matcher" - \
|
||||
"${(@)matches:#*${sep}*}" && ret=0
|
||||
fi
|
||||
return ret
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user