zsh: completion on capital letter

This commit is contained in:
Mathieu Maret 2021-10-04 15:38:22 +02:00
parent 14c633d0f1
commit 10463e3c66
1 changed files with 5 additions and 1 deletions

View File

@ -8,7 +8,11 @@ if [ "x$CASE_SENSITIVE" = "xtrue" ]; 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:|=*'
#zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
# small letter match capital but not the opposite
# e.g. "a" match android.test and Android.mk but
# "A" match Android.mk only
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
fi
# Color in completion