Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: 3.1.6 case-insensitive completion



Bruce Stephens wrote:

> How do I enable case-insensitive completion again?  I'm sure I used to
> have it, once, but I don't seem to get it now.  

It's now in the `compwid' part of the docs (even with this example;
see? sometimes I *can* imagine what people would like to know ;-)...

If your zsh is at least approximately up-to-date, you should use:

  compmatchers=('m:{a-z}={A-Z}')

to get the one-way case-insensitiveness everywhere, or

  compmatchers=('m:{a-zA-Z}={A-Za-z}')

for both ways. If that doesn't work for you, you have to use `compctl -M'
with those strings as arguments.


Bye
 Sven


--
Sven Wischnowsky                         wischnow@xxxxxxxxxxxxxxxxxxxxxxx



Messages sorted by: Reverse Date, Date, Thread, Author