From d4768537c91a43705432b58eb5e0931b93ce7b5f Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Wed, 16 Jan 2002 23:29:55 +0000 Subject: oops --- Completion/Unix/Command/_fsh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Completion/Unix/Command/_fsh (limited to 'Completion/Unix/Command/_fsh') diff --git a/Completion/Unix/Command/_fsh b/Completion/Unix/Command/_fsh new file mode 100644 index 000000000..a7cc22e6a --- /dev/null +++ b/Completion/Unix/Command/_fsh @@ -0,0 +1,23 @@ +#compdef fsh + +_arguments \ + '(--help)-h[help]' \ + '(-h)--help' \ + '(--version)-V[version]' \ + '(-V)--version' \ + '-r[method]:method:(rsh ssh)' \ + '-l[login]:login:_users' \ + '(--timeout)-T:idle timeout:' \ + '(-T)--timeout:idle timeout:' \ + ':remote host name:_hosts' \ + '(-):command: _command_names -e' \ + '*::args:->command' && return 0 + +case "$state" in + command) + shift 1 words + (( CURRENT-- )) + _normal + return + ;; +esac -- cgit 1.4.1