diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Core/_main_complete | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Core/_main_complete b/Completion/Core/_main_complete index 347326c49..54691a1b1 100644 --- a/Completion/Core/_main_complete +++ b/Completion/Core/_main_complete @@ -57,13 +57,13 @@ _def_menu_style=( "$_last_menu_style[@]" _last_menu_style=() zstyle -s ":completion:${curcontext}:default" list-prompt LISTPROMPT || - LISTPROMPT='Current position at %P Continue? ' + LISTPROMPT='%SCurrent position at %p: continue? %s' if [[ -n "$LISTPROMPT" ]]; then zmodload -i zsh/complist compstate[list_max]=scroll fi zstyle -s ":completion:${curcontext}:default" select-prompt SELECTPROMPT || - SELECTPROMPT='%SScrolling active: current selection at %p' + SELECTPROMPT='%SScrolling active: current selection at %p%s' zstyle -s ":completion:${curcontext}:default" select-scroll SELECTSCROLL || SELECTSCROLL=1 |