|
|
|
@ -14,7 +14,12 @@ compinit
@@ -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 ) |
|
|
|
|