zsh-workers
 help / color / mirror / code / Atom feed
From: Clint Adams <clint@zsh.org>
To: zsh-workers@sunsite.dk
Subject: PATCH: _irssi
Date: Thu, 7 Mar 2002 08:23:32 -0500	[thread overview]
Message-ID: <20020307132332.GA21162@dman.com> (raw)

This comes from Istvan Sebestyen <stevee@alphanet.ch>.
I've prefixed all the functions with _irssi to avoid namespace
conflicts.

Index: Completion/Unix/Command/.distfiles
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/.distfiles,v
retrieving revision 1.19
diff -u -r1.19 .distfiles
--- Completion/Unix/Command/.distfiles	14 Feb 2002 17:56:54 -0000	1.19
+++ Completion/Unix/Command/.distfiles	7 Mar 2002 13:19:20 -0000
@@ -16,5 +16,5 @@
 _diff         _gs           _make         _psutils      _tin	_apm  _mail
 _last         _loadkeys     _modutils     _ruby         _sysctl _links _samba
 _user_admin   _rsync        _arping	  _spamassassin _mtools       _ifconfig
-_fsh          _chkconfig    _cdcd
+_fsh          _chkconfig    _cdcd         _irssi
 '
Index: Completion/Unix/Command/_irssi
===================================================================
RCS file: Completion/Unix/Command/_irssi
diff -N Completion/Unix/Command/_irssi
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Completion/Unix/Command/_irssi	7 Mar 2002 13:19:20 -0000
@@ -0,0 +1,45 @@
+#compdef irssi
+
+typeset -A opt_args
+
+local expl
+
+_irssi_servers() {
+		local a
+		a=($(grep "\(^[{ 	]*address\)\|\([{ 	]address\)[ 	]*=" ~/.irssi/config | sed -e "s,^.*address *= *\"\([^\"]\+\).*,\1 ,g"))
+		compadd -x 'use "--help" to get descriptions' $a[@]
+		}
+
+_irssi_ports() {
+		local a
+		a=($(grep "\(^[{ 	]*port\)\|\([{ 	]port\)[ 	]*=" ~/.irssi/config | sed -e "s,^.*port *= *\"\([^\"]\+\).*,\1,g"))
+		compadd -x 'use "--help" to get descriptions' $a[@]
+		}
+
+_irssi_nick() {
+		local a
+		a=($(grep "\(^[{ 	]*nick\)\|\([{ 	]nick\)\|\([{ 	]alternate_nick\)\|\(^[{ 	]*alternate_nick\)[ 	]*=" ~/.irssi/config | sed -e "s,^.*nick *= *\"\([^\"]\+\).*,\1,g"))
+		compadd -x 'use "--help" to get descriptions' $a[@]
+		}
+
+_arguments -C -s \
+	"--config=[config file]:config:_files" \
+	"--home=[home dir location]:home:_dir_list" \
+	"-c[connect to servers]:irc servers: _irssi_servers" \
+	"--connect=[connect to servers]:irc servers: _irssi_servers" \
+	'-w[password]' \
+	'--password=[password]' \
+	"-p[specify a port]:port: _irssi_ports" \
+	"--port=[specify a port]:port: _irssi_ports" \
+	'-![disable autoconnect]' \
+	'--noconnect[disable autoconnect]' \
+	"-n[set nick name]:nick: _irssi_nick" \
+	"--nick=[set nick name]:nick: _irssi_nick" \
+	'-h[hostname]' \
+	'--hostname=[hostname]' \
+	'-v[version]' \
+	'--version[version]' \
+	'-?[help message]' \
+	'--help[help message]' \
+	'--usage[display usage]' \
+


                 reply	other threads:[~2002-03-07 13:35 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020307132332.GA21162@dman.com \
    --to=clint@zsh.org \
    --cc=zsh-workers@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).