summaryrefslogtreecommitdiffstats
path: root/Completion/Unix/Command/_fsh
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Unix/Command/_fsh')
-rw-r--r--Completion/Unix/Command/_fsh22
1 files changed, 0 insertions, 22 deletions
diff --git a/Completion/Unix/Command/_fsh b/Completion/Unix/Command/_fsh
deleted file mode 100644
index c39373117..000000000
--- a/Completion/Unix/Command/_fsh
+++ /dev/null
@@ -1,22 +0,0 @@
-#compdef fsh
-
-local curcontext="$curcontext" state line ret=1
-local -a _comp_priv_prefix
-
-_arguments -C \
- '(- : *)'{-h,--help}'[display help information]' \
- '(- : *)'{-V,--version}'[display version information]' \
- '-r[specify method]:method:(rsh ssh)' \
- '-l[specify login id]:login:_users' \
- '(-T --timeout)'{-T,--timeout}':idle timeout:' \
- ':remote host name:_hosts' \
- '(-):command: _command_names -e' \
- '*::args:->command' && ret=0
-
-if [[ -n "$state" ]]; then
- shift 1 words
- (( CURRENT-- ))
- _normal && ret=0
-fi
-
-return ret