diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-26 06:26:49 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-26 06:26:49 +0000 |
commit | 18c11b0758196dc98c4ddbeb48caa4a1b9d4af8b (patch) | |
tree | f4c6ad66695b314f2c673c52d3b984d77b62b099 /Completion | |
parent | bfa4f17652830a69698d180435a0df045843723e (diff) | |
download | zsh-18c11b0758196dc98c4ddbeb48caa4a1b9d4af8b.tar.gz zsh-18c11b0758196dc98c4ddbeb48caa4a1b9d4af8b.tar.xz zsh-18c11b0758196dc98c4ddbeb48caa4a1b9d4af8b.zip |
better default value for list-prompt style (10923)
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Core/_main_complete | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Core/_main_complete b/Completion/Core/_main_complete index 54691a1b1..5513a3629 100644 --- a/Completion/Core/_main_complete +++ b/Completion/Core/_main_complete @@ -57,7 +57,7 @@ _def_menu_style=( "$_last_menu_style[@]" _last_menu_style=() zstyle -s ":completion:${curcontext}:default" list-prompt LISTPROMPT || - LISTPROMPT='%SCurrent position at %p: continue? %s' + LISTPROMPT='%SAt %p: Hit TAB for more, or the character to insert%s' if [[ -n "$LISTPROMPT" ]]; then zmodload -i zsh/complist compstate[list_max]=scroll |