summaryrefslogtreecommitdiff
path: root/Completion/Zsh/Command/_zstyle
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2002-04-16 07:48:43 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2002-04-16 07:48:43 +0000
commit61f8a07bfc2348b14a7dc194968fcf62f723f36f (patch)
tree9c8b7a2d6f832b6d84dcb5963bc6715efb0c4291 /Completion/Zsh/Command/_zstyle
parentd8fc48f7daa6758ec6a239789b6922af614e1fac (diff)
downloadzsh-61f8a07bfc2348b14a7dc194968fcf62f723f36f.tar.gz
zsh-61f8a07bfc2348b14a7dc194968fcf62f723f36f.zip
make more calls to _message use the -e option (16988)
Diffstat (limited to 'Completion/Zsh/Command/_zstyle')
-rw-r--r--Completion/Zsh/Command/_zstyle18
1 files changed, 9 insertions, 9 deletions
diff --git a/Completion/Zsh/Command/_zstyle b/Completion/Zsh/Command/_zstyle
index 5abfe824e..99ee8f72b 100644
--- a/Completion/Zsh/Command/_zstyle
+++ b/Completion/Zsh/Command/_zstyle
@@ -197,7 +197,7 @@ while (( $#state )); do
;;
argument)
- _message argument
+ _message -e arguments argument
;;
bool)
@@ -290,9 +290,9 @@ while (( $#state )); do
tag-order)
if compset -P '*:*:'; then
- _message description
+ _message -e descriptions description
elif compset -P '*:'; then
- _message 'tag alias'
+ _message -e aliases 'tag alias'
else
suf=()
compset -S ':*' || suf=( -qS: )
@@ -302,11 +302,11 @@ while (( $#state )); do
filepat)
if compset -P '*:*:'; then
- _message description
+ _message -e descriptions description
elif compset -P '*:'; then
- _message tag
+ _message -e tags tag
else
- _message 'glob patterns'
+ _message -e patterns 'glob patterns'
fi
;;
@@ -341,7 +341,7 @@ while (( $#state )); do
;;
fake-files)
- _message 'prefix and names'
+ _message -e fakes 'prefix and names'
;;
fake-params)
@@ -375,11 +375,11 @@ while (( $#state )); do
;;
preserve-prefix)
- _message 'pattern matching prefix to keep'
+ _message -e prefixes 'pattern matching prefix to keep'
;;
separator)
- _message 'separator string'
+ _message -e separators 'separator string'
;;
urgh)