summaryrefslogtreecommitdiffstats
path: root/Completion/User/_socket
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-11-22 12:29:47 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-11-22 12:29:47 +0000
commit3d9d13e918c195f974ff7b2f1dc5b65f6b20a441 (patch)
treed571aef9c8152287ed94dae1199108de80f0b984 /Completion/User/_socket
parentzsh-workers/8718 (diff)
downloadzsh-3d9d13e918c195f974ff7b2f1dc5b65f6b20a441.tar
zsh-3d9d13e918c195f974ff7b2f1dc5b65f6b20a441.tar.gz
zsh-3d9d13e918c195f974ff7b2f1dc5b65f6b20a441.tar.bz2
zsh-3d9d13e918c195f974ff7b2f1dc5b65f6b20a441.tar.lz
zsh-3d9d13e918c195f974ff7b2f1dc5b65f6b20a441.tar.xz
zsh-3d9d13e918c195f974ff7b2f1dc5b65f6b20a441.tar.zst
zsh-3d9d13e918c195f974ff7b2f1dc5b65f6b20a441.zip
zsh-workers/8720
Diffstat (limited to 'Completion/User/_socket')
-rw-r--r--Completion/User/_socket10
1 files changed, 5 insertions, 5 deletions
diff --git a/Completion/User/_socket b/Completion/User/_socket
index b155e7ad4..45374a403 100644
--- a/Completion/User/_socket
+++ b/Completion/User/_socket
@@ -1,9 +1,9 @@
#compdef socket
-# Parameter used:
+# Style used:
#
-# socket_hosts_ports
-# The array that contains paris `host:port'.
+# hosts-ports
+# The style that contains pairs `host:port'.
local curcontext="$curcontext" state line expl
typeset -A opt_args
@@ -41,14 +41,14 @@ arg1)
_wanted ports expl 'port to listen' && _ports "$expl[@]"
else
_wanted hosts expl 'host' &&
- _combination socket_hosts_ports hosts "$expl[@]"
+ _combination '' hosts-ports hosts "$expl[@]"
fi
;;
arg2)
if (( ! $+opt_args[-s] )); then
_wanted ports expl 'port to connect' &&
- _combination socket_hosts_ports hosts="${line[2]:q}" ports "$expl[@]"
+ _combination '' hosts-ports hosts="${line[2]:q}" ports "$expl[@]"
fi
;;
esac