Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: _irssi
- X-seq: zsh-workers 16778
- From: Clint Adams <clint@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: PATCH: _irssi
- Date: Thu, 7 Mar 2002 08:23:32 -0500
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
This comes from Istvan Sebestyen <stevee@xxxxxxxxxxx>.
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]' \
+
Messages sorted by:
Reverse Date,
Date,
Thread,
Author