about summary refs log tree commit diff
path: root/Completion/Base
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-02-28 09:45:32 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-02-28 09:45:32 +0000
commit8fb50dcf4ff1897d792e488f4d6dfeab2d9a5e19 (patch)
tree393bf442adec1b1c5d74032dffafb6bc3186295f /Completion/Base
parent3e87739e57bade63a8cbfa44f1279afa33c29185 (diff)
downloadzsh-8fb50dcf4ff1897d792e488f4d6dfeab2d9a5e19.tar.gz
zsh-8fb50dcf4ff1897d792e488f4d6dfeab2d9a5e19.tar.xz
zsh-8fb50dcf4ff1897d792e488f4d6dfeab2d9a5e19.zip
zsh-workers/9895
Diffstat (limited to 'Completion/Base')
-rw-r--r--Completion/Base/_combination18
1 files changed, 9 insertions, 9 deletions
diff --git a/Completion/Base/_combination b/Completion/Base/_combination
index 6b9607a27..72946bf9e 100644
--- a/Completion/Base/_combination
+++ b/Completion/Base/_combination
@@ -8,19 +8,19 @@
 #
 # Example: telnet
 #
-#  Assume an user sets the style `hosts-ports-users' as for the my-accounts
+#  Assume an user sets the style `users-hosts-ports' as for the my-accounts
 #  tag:
 #
-#    zstyle ':completion:*:*:telnet:*:my-accounts' hosts-ports-users \
-#      host0:: host1::user1 host2::user2
-#      mail-server:{smtp,pop3}:
-#      news-server:nntp:
-#      proxy-server:8000:
+#    zstyle ':completion:*:*:telnet:*:my-accounts' users-hosts-ports \
+#      @host0: user1@host1: user2@host2:
+#      @mail-server:{smtp,pop3}
+#      @news-server:nntp
+#      @proxy-server:8000
 # 
 #
 #  `_telnet' completes hosts as:
 #
-#    _combination my-accounts hosts-ports-users \
+#    _combination my-accounts users-hosts-ports \
 #      ${opt_args[-l]:+users=${opt_args[-l]:q}} \
 #      hosts "$expl[@]"
 #
@@ -30,7 +30,7 @@
 # 
 #  `_telnet' completes ports as:
 #
-#    _combination my-accounts hosts-ports-users \
+#    _combination my-accounts users-hosts-ports \
 #      ${opt_args[-l]:+users=${opt_args[-l]:q}} \
 #      hosts="${line[2]:q}" \
 #      ports "$expl[@]"
@@ -41,7 +41,7 @@
 #
 #  `_telnet' completes users for an argument of option `-l' as:
 #
-#    _combination my-accounts hosts-ports-users \
+#    _combination my-accounts users-hosts-ports \
 #      ${line[2]:+hosts="${line[2]:q}"} \
 #      ${line[3]:+ports="${line[3]:q}"} \
 #      users "$expl[@]"