diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-09-12 00:02:45 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-09-12 00:02:45 +0000 |
commit | 567917651a0ac6f595b062e0721267a8f1585b51 (patch) | |
tree | 3374a55b18e50de6dd24f1231d9667db7a9f9bac /Completion/User/_socket | |
parent | 48306f7ac45df11fed092383fd2ea798bc91fdec (diff) | |
download | zsh-567917651a0ac6f595b062e0721267a8f1585b51.tar.gz zsh-567917651a0ac6f595b062e0721267a8f1585b51.tar.xz zsh-567917651a0ac6f595b062e0721267a8f1585b51.zip |
Initial revision
Diffstat (limited to 'Completion/User/_socket')
-rw-r--r-- | Completion/User/_socket | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Completion/User/_socket b/Completion/User/_socket new file mode 100644 index 000000000..353a66fd5 --- /dev/null +++ b/Completion/User/_socket @@ -0,0 +1,34 @@ +#compdef socket + +local state line expl +typeset -A options + +_arguments -s \ + -{b,c,f,q,r,v,w} \ + -{s,l} \ + '-p:command:->command' \ + ':arg1:->arg1' \ + ':arg2:->arg2' + +case "$state" in +command) + compset -q + _normal + ;; + +arg1) + if (( $+options[-s] )); then + _message 'port' + else + _description expl 'host' + _hosts "$expl[@]" + fi + ;; + +arg2) + if (( ! $+options[-s] )); then + _description expl 'port' + _hostports $line[2] "$expl[@]" + fi + ;; +esac |