fix zstyle case-insensitive completion
Signed-off-by: Cameron Wong <cam@camdar.io>
This commit is contained in:
parent
d03bc03fdd
commit
c667dd3ea6
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ if zstyle -t ':prezto:module:completion:*' case-sensitive; then
|
|||
zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|
||||
setopt CASE_GLOB
|
||||
else
|
||||
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|
||||
zstyle ':completion:*' matcher-list 'm:{[:lower:]}={[:upper:]}' 'm:{[:upper:]}={[:lower:]}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|
||||
unsetopt CASE_GLOB
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue