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

Re: Case-insensitive completion isn't completely insensitive



Kai Grossjohann wrote:

> I have a directory which contains a file ENV and a subdir etc/.  I
> change into that directory, type "source ./e" and then hit TAB.  Zsh
> completes the directory, but not the file!

> zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}' 'r:|[._-/]=** r:|=**' 'l:|=* r:|=*'
                                      ^^
That empty match specification there tells zsh to try case sensitive
completion first. The definition after it specifies case-insensitive
completion. Try removing those empty quotes.

Oliver



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