diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2003-04-03 09:58:17 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2003-04-03 09:58:17 +0000 |
commit | a11c6ef15dbc86d0ca11569c7e8ce847b2ae746a (patch) | |
tree | a9004e52647009b5b2856619f45aba3b05eab6cb /Functions/Zle | |
parent | c34176365e805915b84654aa112b443624d3931e (diff) | |
download | zsh-a11c6ef15dbc86d0ca11569c7e8ce847b2ae746a.tar.gz zsh-a11c6ef15dbc86d0ca11569c7e8ce847b2ae746a.tar.xz zsh-a11c6ef15dbc86d0ca11569c7e8ce847b2ae746a.zip |
c.f. 18407: fix short prompt in select-word-style
Diffstat (limited to 'Functions/Zle')
-rw-r--r-- | Functions/Zle/select-word-style | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Functions/Zle/select-word-style b/Functions/Zle/select-word-style index 288517ef1..afea5b193 100644 --- a/Functions/Zle/select-word-style +++ b/Functions/Zle/select-word-style @@ -24,7 +24,7 @@ while true; do if [[ -n $WIDGET && -z $1 ]]; then read-from-minibuffer -k1 "Word styles (hit return for more detail): -(b)ash (n)ormal (s)hell (w)hitespace (N)one (A)bort +(b)ash (n)ormal (s)hell (w)hitespace (d)efault (q)uit ${detail}? " || return 1 else REPLY=$1 |