diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-09-05 08:36:16 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-09-05 08:36:16 +0000 |
commit | 0df4c9d22978c33b91fd4cdfefba1d5feef35945 (patch) | |
tree | c465693672ad23aa79d87dd789d60a4fc011e40a | |
parent | f2d7665d982076584901afe0ca9fa9f0b0f2b5b0 (diff) | |
download | zsh-0df4c9d22978c33b91fd4cdfefba1d5feef35945.tar.gz zsh-0df4c9d22978c33b91fd4cdfefba1d5feef35945.tar.xz zsh-0df4c9d22978c33b91fd4cdfefba1d5feef35945.zip |
*** empty log message ***
-rw-r--r-- | Functions/Zle/incremental-complete-word | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Functions/Zle/incremental-complete-word b/Functions/Zle/incremental-complete-word index 2ec892c77..8b8bded39 100644 --- a/Functions/Zle/incremental-complete-word +++ b/Functions/Zle/incremental-complete-word @@ -23,12 +23,12 @@ incremental-complete-word() { [[ -z "$curcontext" ]] && curcontext=::: curcontext="incremental:${curcontext#*:}" - zstyle -s ":completion:${curcontext}" prompt pmpt || + zstyle -s ":incremental" prompt pmpt || pmpt='incremental (%c): %u%s %l' - zstyle -s ":completion:${curcontext}" stop-keys stop - zstyle -s ":completion:${curcontext}" break-keys brk + zstyle -s ":incremental" stop-keys stop + zstyle -s ":incremental" break-keys brk - if zstyle -t ":completion:${curcontext}" list; then + if zstyle -t ":incremental" list; then wid=list-choices post=( icw-list-helper ) else |