From 49e3e24e7c2edde55c20b15f5741a6389da4f8f1 Mon Sep 17 00:00:00 2001 From: Brian Mattern Date: Thu, 29 Mar 2012 19:12:22 -0700 Subject: [PATCH] include default completion matcher if CASE_SENSITIVE --- lib/completion.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/completion.zsh b/lib/completion.zsh index b964595ed..c6b3edc99 100644 --- a/lib/completion.zsh +++ b/lib/completion.zsh @@ -12,7 +12,7 @@ zmodload -i zsh/complist ## case-insensitive (all),partial-word and then substring completion if [ "x$CASE_SENSITIVE" = "xtrue" ]; then - zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'l:|=* r:|=*' + zstyle ':completion:*' matcher-list '' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*' unset CASE_SENSITIVE else zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'