Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Case-insensitive completion
- X-seq: zsh-users 6595
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: Zsh-users List <zsh-users@xxxxxxxxxx>
- Subject: Re: Case-insensitive completion
- Date: Wed, 17 Sep 2003 14:43:18 +0000
- In-reply-to: <18061.1063784444@xxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <20030914103053.GA827@xxxxxxxxxxxxxxxxxxxxxxxx> <18061.1063784444@xxxxxxxxxxx>
On Sep 17, 9:40am, Oliver Kiddle wrote:
>
> Here's another idea on how to do this. It's no better than Bart's
Except that yours is not file-completion-specific, which might be
better in some circumstances. Just one question:
> _cscomplete() {
> _complete
> return 1
> }
Are completers always called with no arguments? Or should that be
_cscomplete() {
_complete $*
return 1
}
??
Messages sorted by:
Reverse Date,
Date,
Thread,
Author