1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-02 04:00:28 +00:00

should probably use the value of CASE_INSENSITIVE

This commit is contained in:
Matthew Donoughe 2009-10-07 20:08:54 +00:00
parent 92f2cf94ad
commit a44b5660bf

View File

@ -14,7 +14,7 @@ compinit
zmodload -i zsh/complist
## case-insensitive (all),partial-word and then substring completion
if [ "$CASE_SENSITIVE" ]; then
if [ "x$CASE_SENSITIVE" = "xtrue" ]; then
zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
unset CASE_SENSITIVE
else