summaryrefslogtreecommitdiff
path: root/Completion
diff options
context:
space:
mode:
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Builtins/_zstyle7
-rw-r--r--Completion/Core/_match55
-rw-r--r--Completion/Core/_path_files83
3 files changed, 108 insertions, 37 deletions
diff --git a/Completion/Builtins/_zstyle b/Completion/Builtins/_zstyle
index 536f962b7..654f314e7 100644
--- a/Completion/Builtins/_zstyle
+++ b/Completion/Builtins/_zstyle
@@ -44,7 +44,7 @@ styles=(
ignored-patterns c:
insert-ids c:insert-ids
insert-tab c:bool
- insert-unambiguous c:bool
+ insert-unambiguous c:insunambig
keep-prefix c:keep-prefix
last-prompt c:bool
list c:listwhen
@@ -52,6 +52,7 @@ styles=(
list-packed c:bool
list-prompt c:
list-rows-first c:bool
+ list-suffixes c:bool
local c:
match-original c:match-orig
matcher c:
@@ -292,6 +293,10 @@ while [[ -n $state ]]; do
_wanted values expl 'use list of old matches' compadd true false only
;;
+ insunambig)
+ _wanted values expl 'insert unambiguous string compadd true false pattern
+ ;;
+
urgh)
_wanted values expl no compadd no false off 0
;;
diff --git a/Completion/Core/_match b/Completion/Core/_match
index 3059935d8..ce2b8affe 100644
--- a/Completion/Core/_match
+++ b/Completion/Core/_match
@@ -11,41 +11,60 @@
### Shouldn't be needed any more: [[ _matcher_num -gt 1 ]] && return 1
-local tmp opm="$compstate[pattern_match]" ret=0 orig ins
+local tmp opm="$compstate[pattern_match]" ret=1 orig ins
+local oms="$_old_match_string"
+local ocsi="$compstate[insert]" ocspi="$compstate[pattern_insert]"
# Do nothing if we don't have a pattern.
tmp="${${:-$PREFIX$SUFFIX}#[~=]}"
[[ "$tmp:q" = "$tmp" ]] && return 1
+_old_match_string="$PREFIX$SUFFIX$HISTNO"
+
zstyle -s ":completion:${curcontext}:" match-original orig
-zstyle -b ":completion:${curcontext}:" insert-unambiguous ins
+zstyle -s ":completion:${curcontext}:" insert-unambiguous ins
# Try completion without inserting a `*'?
if [[ -n "$orig" ]]; then
compstate[pattern_match]='-'
- _complete && ret=1
+ _complete && ret=0
compstate[pattern_match]="$opm"
- if (( ret )); then
- [[ "$ins" = yes &&
- $#compstate[unambiguous] -ge ${#:-${PREFIX}${SUFFIX}} ]] &&
- compstate[pattern_insert]=unambiguous
- return 0
- fi
+ # No completion with inserting `*'?
+
+ [[ ret -eq 1 && "$orig" = only ]] && return 1
+fi
+
+if (( ret )); then
+ compstate[pattern_match]='*'
+ _complete && ret=0
+ compstate[pattern_match]="$opm"
fi
-# No completion with inserting `*'?
+if (( ! ret )); then
-[[ "$orig" = only ]] && return 1
+ if [[ "$ins" = pattern && $compstate[nmatches] -gt 1 ]]; then
-compstate[pattern_match]='*'
-_complete && ret=1
-compstate[pattern_match]="$opm"
+ [[ "$oms" = "$PREFIX$SUFFIX$HISTNO" &&
+ "$compstate[insert]" = automenu-unambiguous ]] &&
+ compstate[insert]=automenu
+ [[ "$compstate[insert]" != *menu ]] &&
+ compstate[pattern_insert]= compstate[insert]=
-[[ ret -eq 1 && "$ins" = yes &&
- $#compstate[unambiguous] -ge ${#:-${PREFIX}${SUFFIX}} ]] &&
- compstate[pattern_insert]=unambiguous
+# We tried to be clever here, making completion insert unambiguous
+# expansions as early as possible, but this is really hard to test
+# and the code below probably does more harm than good.
+#
+# [[ $compstate[unambiguous_cursor] -gt $#compstate[unambiguous] ]] &&
+# ins=yes compstate[insert]="$ocsi" compstate[pattern_insert]="$ocspi"
+ fi
+
+ [[ "$ins" = (true|yes|on|1) &&
+ $#compstate[unambiguous] -ge ${#:-${PREFIX}${SUFFIX}} ]] &&
+ compstate[pattern_insert]=unambiguous
+
+fi
-return 1-ret
+return ret
diff --git a/Completion/Core/_path_files b/Completion/Core/_path_files
index e95b3f184..bce3144af 100644
--- a/Completion/Core/_path_files
+++ b/Completion/Core/_path_files
@@ -5,7 +5,7 @@
local linepath realpath donepath prepath testpath exppath skips skipped
local tmp1 tmp2 tmp3 tmp4 i orig eorig pre suf tpre tsuf opre osuf cpre
-local pats haspats ignore pfxsfx sopt gopt opt sdirs ignpar cfopt
+local pats haspats ignore pfxsfx sopt gopt opt sdirs ignpar cfopt listsfx
local nm=$compstate[nmatches] menu matcher mopts sort match mid accex fake
typeset -U prepaths exppaths
@@ -137,6 +137,8 @@ else
fi
zstyle -s ":completion:${curcontext}:paths" special-dirs sdirs
+zstyle -t ":completion:${curcontext}:paths" list-suffixes &&
+ listsfx=yes
[[ "$pats" = ((|*[[:blank:]])\*(|[[:blank:]]*)|*\([^[:blank:]]#/[^[:blank:]]#\)*) ]] &&
sopt=$sopt/
@@ -460,9 +462,11 @@ for prepath in "$prepaths[@]"; do
SUFFIX="${tsuf}"
fi
- if (( tmp4 )) ||
- [[ -n "$compstate[pattern_match]" &&
- "$tmp2" = (|*[^\\])[][*?#~^\|\<\>]* ]]; then
+ # This once tested `|| [[ -n "$compstate[pattern_match]" &&
+ # "$tmp2" = (|*[^\\])[][*?#~^\|\<\>]* ]]' but it should now be smart
+ # enough to handle multiple components with patterns.
+
+ if (( tmp4 )); then
# It is. For menucompletion we now add the possible completions
# for this component with the unambigous prefix we have built
# and the rest of the string from the line as the suffix.
@@ -480,15 +484,33 @@ for prepath in "$prepaths[@]"; do
compquote tmp1 tmp2
fi
+ if [[ -z "$_comp_correct" &&
+ "$compstate[pattern_match]" = \* && -n "$listsfx" &&
+ "$tmp2" = (|*[^\\])[][*?#~^\|\<\>]* ]]; then
+ PREFIX="$opre"
+ SUFFIX="$osuf"
+ fi
+
if [[ -n $menu || -z "$compstate[insert]" ]] ||
- ! zstyle -t ":completion:${curcontext}:paths" expand suffix; then
+ ! zstyle -t ":completion:${curcontext}:paths" expand suffix ||
+ [[ -z "$listsfx" &&
+ ( -n "$_comp_correct" ||
+ -z "$compstate[pattern_match]" || "$SUFFIX" != */* ||
+ "${SUFFIX#*/}" = (|*[^\\])[][*?#~^\|\<\>]* ) ]]; then
(( tmp4 )) && zstyle -t ":completion:${curcontext}:paths" ambiguous &&
compstate[to_end]=
if [[ "$tmp3" = */* ]]; then
- compadd -Qf "$mopts[@]" -p "$linepath$tmp2" -s "/${tmp3#*/}" \
- -W "$prepath$realpath$testpath" \
- "$pfxsfx[@]" -M "r:|/=* r:|=*" \
- - "${(@)tmp1%%/*}"
+ if [[ -z "$listsfx" || "$tmp3" != */?* ]]; then
+ compadd -Qf "$mopts[@]" -p "$linepath$tmp2" -s "/${tmp3#*/}" \
+ -W "$prepath$realpath$testpath" \
+ "$pfxsfx[@]" -M "r:|/=* r:|=*" \
+ - "${(@)tmp1%%/*}"
+ else
+ compadd -Qf "$mopts[@]" -p "$linepath$tmp2" \
+ -W "$prepath$realpath$testpath" \
+ "$pfxsfx[@]" -M "r:|/=* r:|=*" \
+ - "${(@)^tmp1%%/*}/${tmp3#*/}"
+ fi
else
compadd -Qf "$mopts[@]" -p "$linepath$tmp2" \
-W "$prepath$realpath$testpath" \
@@ -497,12 +519,20 @@ for prepath in "$prepaths[@]"; do
fi
else
if [[ "$tmp3" = */* ]]; then
- tmp3=( -Qf "$mopts[@]" -p "$linepath$tmp2"
+ tmp4=( -Qf "$mopts[@]" -p "$linepath$tmp2"
-W "$prepath$realpath$testpath"
"$pfxsfx[@]" -M "r:|/=* r:|=*" )
- for i in "$tmp1[@]"; do
- compadd "$tmp3[@]" -s "/${i#*/}" - "${i%%/*}"
- done
+ if [[ -z "$listsfx" ]]; then
+ for i in "$tmp1[@]"; do
+ compadd "$tmp4[@]" -s "/${i#*/}" - "${i%%/*}"
+ done
+ else
+ [[ -n "$compstate[pattern_match]" ]] && SUFFIX="${SUFFIX:s./.*/}*"
+
+ for i in "$tmp1[@]"; do
+ compadd "$tmp4[@]" - "$i"
+ done
+ fi
else
compadd -Qf "$mopts[@]" -p "$linepath$tmp2" \
-W "$prepath$realpath$testpath" \
@@ -526,22 +556,33 @@ for prepath in "$prepaths[@]"; do
# take it from the filenames.
testpath="${testpath}${tmp1[1]%%/*}/"
- tmp1=( "${(@)tmp1#*/}" )
tmp3="${tmp3#*/}"
if [[ "$tpre" = */* ]]; then
- cpre="${cpre}${tpre%%/*}/"
+ if [[ -z "$_comp_correct" && -n "$compstate[pattern_match]" &&
+ "$tmp2" = (|*[^\\])[][*?#~^\|\<\>]* ]]; then
+ cpre="${cpre}${tmp1[1]%%/*}/"
+ else
+ cpre="${cpre}${tpre%%/*}/"
+ fi
tpre="${tpre#*/}"
elif [[ "$tsuf" = */* ]]; then
[[ "$tsuf" != /* ]] && mid="$testpath"
- cpre="${cpre}${tpre}/"
+ if [[ -z "$_comp_correct" && -n "$compstate[pattern_match]" &&
+ "$tmp2" = (|*[^\\])[][*?#~^\|\<\>]* ]]; then
+ cpre="${cpre}${tmp1[1]%%/*}/"
+ else
+ cpre="${cpre}${tpre}/"
+ fi
tpre="${tsuf#*/}"
tsuf=
else
tpre=
tsuf=
fi
+
+ tmp1=( "${(@)tmp1#*/}" )
done
if [[ -z "$tmp4" ]]; then
@@ -580,8 +621,14 @@ for prepath in "$prepaths[@]"; do
else
compquote tmp4 tmp1
fi
- compadd -Qf "$mopts[@]" -p "$linepath$tmp4" -W "$prepath$realpath$testpath" \
- "$pfxsfx[@]" -M "r:|/=* r:|=*" -a tmp1
+ if [[ -z "$_comp_correct" && -n "$compstate[pattern_match]" &&
+ "$PREFIX$SUFFIX" = (|*[^\\])[][*?#~^\|\<\>]* ]]; then
+ compadd -Qf -W "$prepath$realpath" "$pfxsfx[@]" "$mopts[@]" \
+ -M "r:|/=* r:|=*" - "$linepath$tmp4${(@)^tmp1}"
+ else
+ compadd -Qf -p "$linepath$tmp4" -W "$prepath$realpath$testpath" \
+ "$pfxsfx[@]" "$mopts[@]" -M "r:|/=* r:|=*" -a tmp1
+ fi
fi
fi
done