1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-04-26 08:13:28 +02:00

allow case sensitivity to be toggled

This commit is contained in:
Matthew Donoughe
2009-10-07 20:01:52 +00:00
parent 2289cacecb
commit cea6040c30
2 changed files with 9 additions and 1 deletions
+6 -1
View File
@@ -14,7 +14,12 @@ compinit
zmodload -i zsh/complist
## case-insensitive (all),partial-word and then substring completion
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
if [ "$CASE_SENSITIVE" ]; then
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:|=*'
fi
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' hosts $( sed 's/[, ].*$//' $HOME/.ssh/known_hosts )