Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: [SUBMIT] _ant completion function
- X-seq: zsh-users 5264
- From: Byron Foster <byron@xxxxxxxx>
- To: Zsh users <zsh-users@xxxxxxxxxx>
- Subject: Re: [SUBMIT] _ant completion function
- Date: Sun, 18 Aug 2002 03:45:25 -0700
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <3D5DA795.8CE14D47@xxxxxxxxxxxx>
Bill Burton wrote:
Hello,
Here's my version of an _ant function for Ant completion support in
versions 1.3 to 1.5.
Cool, it would be nice to have ant completion for ZSH.
It's nearly 100% pure zsh with the exception that sed is called to strip
\r's from the output of ant -projecthelp which is a requirement when
running under Cygwin. If anyone can tell me how to do that with within
zsh I'd appreciate it.
try:
target=${target//^M/}
Where ^M is a quoted insert of the single Cariage Return character
(#0D). ie. 'Ctrl-v Ctrl-m' in Zle or vi.
Byron
Messages sorted by:
Reverse Date,
Date,
Thread,
Author