zsh-workers
 help / color / mirror / code / Atom feed
* PATCH: _fsh
@ 2001-12-26  3:43 Clint Adams
  0 siblings, 0 replies; only message in thread
From: Clint Adams @ 2001-12-26  3:43 UTC (permalink / raw)
  To: zsh-workers

Index: Completion/Unix/Command/.distfiles
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/.distfiles,v
retrieving revision 1.16
diff -u -r1.16 .distfiles
--- Completion/Unix/Command/.distfiles	2001/12/19 15:07:31	1.16
+++ Completion/Unix/Command/.distfiles	2001/12/26 03:41:32
@@ -16,4 +16,5 @@
 _diff         _gs           _make         _psutils      _tin	_apm  _mail
 _last         _loadkeys     _modutils     _ruby         _sysctl _links _samba
 _user_admin   _rsync        _arping	  _spamassassin _mtools       _ifconfig
+_fsh
 '
Index: Completion/Unix/Command/_fsh
===================================================================
RCS file: _fsh
diff -N _fsh
--- /dev/null	Thu May 24 22:33:05 2001
+++ _fsh	Tue Dec 25 19:41:32 2001
@@ -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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2001-12-26  3:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-12-26  3:43 PATCH: _fsh Clint Adams

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).