Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Case insensitive completion on ancient zsh versions?
- X-seq: zsh-users 7182
- From: Oliver Kiddle <okiddle@xxxxxxxxxxx>
- To: Kai Grossjohann <kai@xxxxxxxxxxxxxx>
- Subject: Re: Case insensitive completion on ancient zsh versions?
- Date: Mon, 15 Mar 2004 10:57:55 +0100
- Cc: zsh-users@xxxxxxxxxx
- In-reply-to: <87d67fut7j.fsf@xxxxxxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <87d67fut7j.fsf@xxxxxxxxxxxxxxxxxxxxxxxx>
Kai Grossjohann wrote:
> I've got a login on various systems which have zsh version 3.1 (!)
> installed on them. To add to the joy, they just have the binary, and
> no documentation.
You'll need to be more precise about the zsh version than that: there's
a huge difference between 3.1.1 and 3.1.9.
Is it using the new function based completion or compctl.
With compctl, you might be able to do this (I think):
compctl -T -M 'm:{a-zA-Z}={A-Za-z}'
For new completion it is difficult to know because it could be compconfig
or zstyle and the style changed a few times. 3.1 was a development series.
Try this (which is right for 4.x):
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
If you've got anything older than about 3.1.5 then I don't think it is
possible.
Oliver
Messages sorted by:
Reverse Date,
Date,
Thread,
Author