Browse Source

should probably use the value of CASE_INSENSITIVE

Matthew Donoughe 14 years ago
parent
commit
c1444a9612
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/completion.zsh

+ 2 - 2
lib/completion.zsh

@@ -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
@@ -42,4 +42,4 @@ zstyle ':completion:*:*:(ssh|scp):*:*' hosts `sed 's/^\([^ ,]*\).*$/\1/' ~/.ssh/
 # zstyle ':completion:*:history-words' stop yes
 # zstyle ':completion:*:history-words' remove-all-dups yes
 # zstyle ':completion:*:history-words' list false
-# zstyle ':completion:*:history-words' menu yes
+# zstyle ':completion:*:history-words' menu yes