Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: predict-on: suppress long listings
- X-seq: zsh-workers 8428
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: PATCH: predict-on: suppress long listings
- Date: Tue, 26 Oct 1999 16:08:25 +0000
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
This is based on Sven's suggestion from 8399. Also deletes two extraneous
setopts. Requires two patches I posted previously in 8364 and 8373.
The +h in "local -a +h comppostfuncs" is unnecessary, but just in case it
ever becomes a special as part of moving common completion ops into C ...
Index: 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 @@
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 @@
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 "$@"
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Messages sorted by:
Reverse Date,
Date,
Thread,
Author