diff options
-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 |