about summary refs log tree commit diff
path: root/Functions/Zle
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-09-05 08:36:16 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-09-05 08:36:16 +0000
commit0df4c9d22978c33b91fd4cdfefba1d5feef35945 (patch)
treec465693672ad23aa79d87dd789d60a4fc011e40a /Functions/Zle
parentf2d7665d982076584901afe0ca9fa9f0b0f2b5b0 (diff)
downloadzsh-0df4c9d22978c33b91fd4cdfefba1d5feef35945.tar.gz
zsh-0df4c9d22978c33b91fd4cdfefba1d5feef35945.tar.xz
zsh-0df4c9d22978c33b91fd4cdfefba1d5feef35945.zip
*** empty log message ***
Diffstat (limited to 'Functions/Zle')
-rw-r--r--Functions/Zle/incremental-complete-word8
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