mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
should probably use the value of CASE_INSENSITIVE
This commit is contained in:
parent
cea6040c30
commit
c1444a9612
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ compinit
|
||||||
zmodload -i zsh/complist
|
zmodload -i zsh/complist
|
||||||
|
|
||||||
## case-insensitive (all),partial-word and then substring completion
|
## case-insensitive (all),partial-word and then substring completion
|
||||||
if [ "$CASE_SENSITIVE" ]; then
|
if [ "x$CASE_SENSITIVE" = "xtrue" ]; then
|
||||||
zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|
zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|
||||||
unset CASE_SENSITIVE
|
unset CASE_SENSITIVE
|
||||||
else
|
else
|
||||||
|
@ -42,4 +42,4 @@ zstyle ':completion:*:*:(ssh|scp):*:*' hosts `sed 's/^\([^ ,]*\).*$/\1/' ~/.ssh/
|
||||||
# zstyle ':completion:*:history-words' stop yes
|
# zstyle ':completion:*:history-words' stop yes
|
||||||
# zstyle ':completion:*:history-words' remove-all-dups yes
|
# zstyle ':completion:*:history-words' remove-all-dups yes
|
||||||
# zstyle ':completion:*:history-words' list false
|
# zstyle ':completion:*:history-words' list false
|
||||||
# zstyle ':completion:*:history-words' menu yes
|
# zstyle ':completion:*:history-words' menu yes
|
||||||
|
|
Loading…
Reference in a new issue