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 | |
parent | bfa4f17652830a69698d180435a0df045843723e (diff) | |
download | zsh-18c11b0758196dc98c4ddbeb48caa4a1b9d4af8b.tar.gz zsh-18c11b0758196dc98c4ddbeb48caa4a1b9d4af8b.tar.xz zsh-18c11b0758196dc98c4ddbeb48caa4a1b9d4af8b.zip |
better default value for list-prompt style (10923)
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/Core/_main_complete | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index c4a28d895..ee74397c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2000-04-26 Sven Wischnowsky <wischnow@informatik.hu-berlin.de> + * 10923: Completion/Core/_main_complete: better default value for + list-prompt style + * 10922: Completion/Core/_path_files: file-sort made $fignore fail 2000-04-25 Sven Wischnowsky <wischnow@informatik.hu-berlin.de> 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 |