diff options
author | Robby Russell <robby@planetargon.com> | 2015-06-14 22:17:43 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-06-14 22:17:43 -0700 |
commit | 34d3680232232c82c4e3ee850152d127b7317b3c (patch) | |
tree | 761c1ec7591d8dd10d708b9e840c1dfe37531af8 | |
parent | 3a57076d93700a2762fd0136877b41ef3f0e1bf5 (diff) | |
parent | 45121611fe00a27155aa4259c31761224d4ccef4 (diff) | |
download | zsh-34d3680232232c82c4e3ee850152d127b7317b3c.tar.gz zsh-34d3680232232c82c4e3ee850152d127b7317b3c.tar.bz2 zsh-34d3680232232c82c4e3ee850152d127b7317b3c.zip |
Merge pull request #3838 from forivall/hyphen-insensitive
Add hyphen insensitivity
-rw-r--r-- | lib/completion.zsh | 7 | ||||
-rw-r--r-- | templates/zshrc.zsh-template | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/lib/completion.zsh b/lib/completion.zsh index 4b1bb0a62..452c0dfe7 100644 --- a/lib/completion.zsh +++ b/lib/completion.zsh @@ -15,7 +15,12 @@ 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:|=*' + if [ "x$HYPHEN_INSENSITIVE" = "xtrue" ]; then + zstyle ':completion:*' matcher-list 'm:{a-zA-Z-_}={A-Za-z_-}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*' + unset HYPHEN_INSENSITIVE + else + zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*' + fi fi zstyle ':completion:*' list-colors '' diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index 763288dfd..44e8b0d1b 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -10,6 +10,10 @@ ZSH_THEME="robbyrussell" # Uncomment the following line to use case-sensitive completion. # CASE_SENSITIVE="true" +# Uncomment the following line to use hyphen-insensitive completion. Case +# sensitive completion must be off. _ and - will be interchangeable. +# HYPHEN_INSENSITIVE="true" + # Uncomment the following line to disable bi-weekly auto-update checks. # DISABLE_AUTO_UPDATE="true" |