From 881d24cd48b4c659760961991e0f029900c54a8e Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Wed, 17 Nov 1999 09:57:16 +0000 Subject: manual/8654 --- Functions/Zle/incremental-complete-word | 54 +++++++-------------------------- Functions/Zle/predict-on | 15 +++++---- 2 files changed, 20 insertions(+), 49 deletions(-) (limited to 'Functions') diff --git a/Functions/Zle/incremental-complete-word b/Functions/Zle/incremental-complete-word index 3eaed1a9b..0b3cb05f4 100644 --- a/Functions/Zle/incremental-complete-word +++ b/Functions/Zle/incremental-complete-word @@ -8,57 +8,25 @@ # completion so far. You can hit TAB to do normal completion, ^g to # abort back to the state when you started, and ^d to list the matches. # -# This works best with the new function based completion system. -# -# Configuration keys: -# -# incremental_prompt -# Prompt to show in status line during icompletion. The sequence `%u' -# is replaced by the unambiguous part of all matches if there is any -# and it is different from the word on the line. A `%s' is replaced -# with `-no match-', `-no prefix-', or an empty string if there is -# no completion matching the word on the line, if the matches have -# no common prefix different from the word on the line or if there is -# such a common prefix, respectively. The sequence `%c' is replaced -# by the name of the completer function that generated the matches -# (without the leading underscore). Finally, `%n' is replaced by the -# number of matches generated, `%a' is replaced by an empty string -# if the matches are in the normal set (i.e. the one without file names -# with one of the suffixes from `fignore') and with ` -alt-' if the -# matches are in the alternate set, and if the `incremental_list' key -# (see below) is set, `%l' is replaced by `...' if the list of matches -# is too long to fit on the screen and with an empty string otherwise. -# -# incremental_stop -# Pattern matching keys which will cause icompletion to stop and the -# key to be re-executed. -# -# incremental_break -# Pattern matching keys which will cause icompletion to stop and the -# key to be discarded. -# -# incremental_completer -# Set of completers, like the `completer' key for normal completion. -# -# incremental_list -# If set to a non-empty string, the matches will be listed on every -# key-press. - +# This works only with the new function based completion system. # The main widget function. incremental-complete-word() { - emulate -L zsh + #emulate -L zsh unsetopt autolist menucomplete automenu # doesn't work well local key lbuf="$LBUFFER" rbuf="$RBUFFER" pmpt word local lastl lastr wid twid num alt post toolong + local curcontext="$curcontext" stop brk + + [[ -z "$curcontext" ]] && curcontext=':incremental' - [[ -n "$compconfig[incremental_completer]" ]] && - set ${(s.:.)compconfig[incremental_completer]} - pmpt="${compconfig[incremental_prompt]-incremental (%c): %u%s %l}" + _style -s '' prompt pmpt || pmpt='incremental (%c): %u%s %l}' + _style -s '' stop stop + _style -s '' break brk - if [[ -n "$compconfig[incremental_list]" ]]; then + if _style '' list; then wid=list-choices post=( icw-list-helper ) else @@ -91,10 +59,10 @@ incremental-complete-word() { while [[ '#key' -ne '#\\r' && '#key' -ne '#\\n' && '#key' -ne '#\\C-g' ]]; do twid=$wid - if [[ "$key" = ${~compconfig[incremental_stop]} ]]; then + if [[ "$key" = ${~stop} ]]; then zle -U "$key" return - elif [[ "$key" = ${~compconfig[incremental_break]} ]]; then + elif [[ "$key" = ${~brk} ]]; then return elif [[ '#key' -eq '#\\C-h' || '#key' -eq '#\\C-?' ]]; then [[ $#LBUFFER -gt $#l ]] && LBUFFER="$LBUFFER[1,-2]" diff --git a/Functions/Zle/predict-on b/Functions/Zle/predict-on index 3a81cb3c6..07e2856de 100644 --- a/Functions/Zle/predict-on +++ b/Functions/Zle/predict-on @@ -7,7 +7,7 @@ # standard completion --- though editing in the middle is liable to delete # the rest of the line. # -# The setting of compmatchers means that if you use the completion system, +# With the function based completion system (which is needed for this), # you should be able to type TAB at almost any point to advance the cursor # to the next "interesting" character position (usually the end of the # current word, but sometimes somewhere in the middle of the word). And @@ -23,8 +23,6 @@ # Note that all functions are defined when you first type the predict-on # key, which means typing the predict-off key before that gives a harmless # error message. -# -# This uses the configuration keys starting with `predict_'. predict-on() { zle -N self-insert insert-and-predict @@ -55,13 +53,18 @@ insert-and-predict () { unsetopt automenu recexact integer curs=$CURSOR pos nchar=${#LBUFFER//[^${KEYS[-1]}]} local -a +h comppostfuncs + local crs curcontext="$curcontext" + + [[ -z "$curcontext" ] && curcontext=':predict' + comppostfuncs=( predict-limit-list ) - zle complete-word ${(s.:.)compconfig[predict_completer]} + zle complete-word # Decide where to leave the cursor. The dummy loop is used to # get out of that `case'. repeat 1 do - case $compconfig[predict_cursor] in + _style -s '' cursor crs + case $crs in (complete) # At the place where the completion left it, if it is after # the character typed. @@ -118,7 +121,7 @@ predict-limit-list() { then compstate[list]='' compstate[force_list]=yes - elif [[ $compconfig[predict_list] = always ]] + elif _style '' list always ]] then compstate[force_list]=yes fi -- cgit 1.4.1