From 51cb3f0a27ea185be2d703be822b2b4b23eba0b7 Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Wed, 3 Nov 1999 09:06:17 +0000 Subject: zsh-3.1.6-bart-8 --- Functions/Zle/predict-on | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Functions/Zle/predict-on') diff --git a/Functions/Zle/predict-on b/Functions/Zle/predict-on index 7c4133560..3a81cb3c6 100644 --- a/Functions/Zle/predict-on +++ b/Functions/Zle/predict-on @@ -59,7 +59,8 @@ insert-and-predict () { zle complete-word ${(s.:.)compconfig[predict_completer]} # Decide where to leave the cursor. The dummy loop is used to # get out of that `case'. - while true; do + repeat 1 + do case $compconfig[predict_cursor] in (complete) # At the place where the completion left it, if it is after @@ -69,7 +70,8 @@ insert-and-predict () { (key) # Or maybe at the n'th occurrence of the character typed. pos=${BUFFER[(in:nchar:)${KEYS[-1]}]} - if [[ pos -gt curs ]]; then + if [[ pos -gt curs ]] + then CURSOR=$pos break fi @@ -78,7 +80,6 @@ insert-and-predict () { # Or else at the previous position. CURSOR=$curs esac - break done fi fi -- cgit 1.4.1