Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: _dchroot
- X-seq: zsh-workers 22022
- From: Oliver Kiddle <okiddle@xxxxxxxxxxx>
- To: Zsh workers <zsh-workers@xxxxxxxxxx>
- Subject: PATCH: _dchroot
- Date: Thu, 24 Nov 2005 15:40:47 +0100
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
New completion function for dchroot.
Oliver
Index: Completion/Debian/Command/_dchroot
===================================================================
RCS file: Completion/Debian/Command/_dchroot
diff -N Completion/Debian/Command/_dchroot
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ Completion/Debian/Command/_dchroot 23 Nov 2005 11:14:54 -0000
@@ -0,0 +1,18 @@
+#compdef dchroot
+
+local curcontext="$curcontext" state line expl ret=1
+
+_arguments -C \
+ '(-c -l -h -V)-a[execute in all known chroots]' \
+ '(-a -l -h -V)-c[execute in specified chroot]:chroot:->chroots' \
+ '(- *)-l[list available chroots]' \
+ '(-l)-d[preserve environment in chroot]' \
+ '(-h -l -V)-q[be quiet]' \
+ '(- *)-h[display help information]' \
+ '(- *)-V[display version information]' \
+ '*::args: _normal' && ret=0
+
+[[ -n $state ]] && _wanted chroots expl chroot \
+ compadd ${${$(dchroot -l)[3,-1]%,}:#\[*\]} && ret=0
+
+return ret
This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author