Browse Source

should probably use the value of CASE_INSENSITIVE

master
Matthew Donoughe 15 years ago
parent
commit
a44b5660bf
  1. 2
      lib/completion.zsh

2
lib/completion.zsh

@ -14,7 +14,7 @@ compinit @@ -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

Loading…
Cancel
Save