From a44b5660bf4b76c9b1d56a3805f22417e6370ced Mon Sep 17 00:00:00 2001 From: Matthew Donoughe Date: Wed, 7 Oct 2009 20:08:54 +0000 Subject: [PATCH] should probably use the value of CASE_INSENSITIVE --- lib/completion.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/completion.zsh b/lib/completion.zsh index 11f6724..68ca3b4 100644 --- a/lib/completion.zsh +++ b/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 \ No newline at end of file +# zstyle ':completion:*:history-words' menu yes