From 270b48432de9ef8f17e97695576ccaf426d7e9c5 Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Tue, 26 Oct 1999 16:17:30 +0000 Subject: zsh-workers/8428 --- Functions/Zle/predict-on | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'Functions/Zle') diff --git a/Functions/Zle/predict-on b/Functions/Zle/predict-on index dbd828975..db129e45c 100644 --- a/Functions/Zle/predict-on +++ b/Functions/Zle/predict-on @@ -25,14 +25,12 @@ # error message. predict-on() { - setopt localoptions unset noksharrays zle -N self-insert insert-and-predict zle -N magic-space insert-and-predict zle -N backward-delete-char delete-backward-and-predict zle -N delete-char-or-list delete-no-predict } predict-off() { - setopt localoptions unset noksharrays zle -A .self-insert self-insert zle -A .magic-space magic-space zle -A .backward-delete-char backward-delete-char @@ -53,6 +51,8 @@ insert-and-predict () { if [[ ${KEYS[-1]} != ' ' ]] then integer curs=$CURSOR + local -a +h comppostfuncs + comppostfuncs=( predict-limit-list ) zle complete-word CURSOR=$curs fi @@ -79,8 +79,20 @@ delete-backward-and-predict() { fi } delete-no-predict() { - predict-off + [[ $WIDGET != delete-char-or-list || -n $RBUFFER ]] && predict-off zle .$WIDGET "$@" } +# This is a helper function for autocompletion to prevent long lists +# of matches from forcing a "do you wish to see all ...?" prompt. + +predict-limit-list() { + if [[ compstate[list_lines]+BUFFERLINES -gt LINES ]]; then + compstate[list]='' + compstate[force_list]=yes + fi +} + +# Handle zsh autoloading conventions + [[ -o kshautoload ]] || predict-on "$@" -- cgit 1.4.1