summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:02:04 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:02:04 +0000
commitb90ecd936fc6640472b356e263613a7b550860eb (patch)
tree5f0d4b5cf664216246771ae49b57f875f6365658
parent3178e9d202ef38664aca02b96e026f72b7396224 (diff)
downloadzsh-b90ecd936fc6640472b356e263613a7b550860eb.tar.gz
zsh-b90ecd936fc6640472b356e263613a7b550860eb.zip
moved to Completion/Unix/Command/_socket
-rw-r--r--Completion/User/_socket56
1 files changed, 0 insertions, 56 deletions
diff --git a/Completion/User/_socket b/Completion/User/_socket
deleted file mode 100644
index 9db31c9ae..000000000
--- a/Completion/User/_socket
+++ /dev/null
@@ -1,56 +0,0 @@
-#compdef socket
-
-# Style used:
-#
-# hosts-ports
-# The style that contains pairs `host:port'.
-
-local curcontext="$curcontext" state line expl ret=1
-typeset -A opt_args
-
-[[ $CURRENT -eq 2 ]] &&
- { ! zstyle -T ":completion:${curcontext}:options" prefix-needed ||
- [[ "$PREFIX" = -* ]] } &&
- _wanted options expl option compadd - -version
-
-_arguments -C -s \
- '-b[background]' \
- '-c[crlf]' \
- '-f[fork]' \
- '-q[quit]' \
- '-r[read only]' \
- '-v[verbose]' \
- '-w[write only]' \
- '-s[server]' \
- '-l[loop]' \
- '-p[program]:command:->command' \
- ':arg1:->arg1' \
- ':arg2:->arg2' && ret=0
-
-case "$state" in
-command)
- compset -q
- if [[ $CURRENT -eq 1 ]]; then
- _command_names -e "$@" && ret=0
- else
- _normal && ret=0
- fi
- ;;
-
-arg1)
- if (( $+opt_args[-s] )); then
- _ports && ret=0
- else
- _wanted hosts expl 'host' _combination '' hosts-ports hosts - && ret=0
- fi
- ;;
-
-arg2)
- if (( ! $+opt_args[-s] )); then
- _wanted ports expl 'port to connect' \
- _combination '' hosts-ports hosts="${line[1]:q}" ports - && ret=0
- fi
- ;;
-esac
-
-return ret