summaryrefslogtreecommitdiff
path: root/lib/completion.zsh
diff options
context:
space:
mode:
authorMatthew Donoughe <mdonoughe@gmail.com>2009-10-07 20:08:54 +0000
committerMatthew Donoughe <mdonoughe@gmail.com>2009-10-07 20:08:54 +0000
commitc1444a96129b665bcbf67e9baad9bf7257c7c650 (patch)
tree281537cd03caf7f897578dd9ae81bc40a4cfa855 /lib/completion.zsh
parentcea6040c305d1e645f497e59133c2c5434a430ef (diff)
downloadzsh-c1444a96129b665bcbf67e9baad9bf7257c7c650.tar.gz
zsh-c1444a96129b665bcbf67e9baad9bf7257c7c650.tar.bz2
zsh-c1444a96129b665bcbf67e9baad9bf7257c7c650.zip
should probably use the value of CASE_INSENSITIVE
Diffstat (limited to 'lib/completion.zsh')
-rw-r--r--lib/completion.zsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/completion.zsh b/lib/completion.zsh
index 11f67249f..68ca3b4c1 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