Fix case-insensitive autocompletion
This commit is contained in:
parent
de5746401c
commit
f46937d2de
|
@ -12,3 +12,7 @@ fi;
|
||||||
# disable zsh bundled function mtools command mcd
|
# disable zsh bundled function mtools command mcd
|
||||||
# which causes a conflict.
|
# which causes a conflict.
|
||||||
compdef -d mcd
|
compdef -d mcd
|
||||||
|
|
||||||
|
## case-insensitive (all), partial-word and then substring completion
|
||||||
|
zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' \
|
||||||
|
'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|
||||||
|
|
Loading…
Reference in a new issue