diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-01-06 09:27:18 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-01-06 09:27:18 +0100 |
commit | b47202cba1786f899fa0c610210697d033babbc9 (patch) | |
tree | 029750e6deb7300edbb0e844f4ca6d2057b9f80d /.zsh/zshrc/20_compsys | |
parent | 034e6a569b7d0db93fad25a47cd3083d56a740bd (diff) |
zshrc: Unignore some completion patterns
Diffstat (limited to '.zsh/zshrc/20_compsys')
-rw-r--r-- | .zsh/zshrc/20_compsys | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.zsh/zshrc/20_compsys b/.zsh/zshrc/20_compsys index eec44d6..3da9ea8 100644 --- a/.zsh/zshrc/20_compsys +++ b/.zsh/zshrc/20_compsys @@ -68,8 +68,8 @@ zstyle ':completion:*:history-words' stop yes zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' # ignore working and backup copies, and compiled objects -zstyle ':completion:*:(all-|)files' ignored-patterns \ - '*.bk' '*.bak' '*.old' '*~' '.*.sw?' '*.o' '*.pyc' +#zstyle ':completion:*:(all-|)files' ignored-patterns \ +# '*.bk' '*.bak' '*.old' '*~' '.*.sw?' '*.o' '*.pyc' # allow one error for every three characters typed in approximate completer zstyle -e ':completion:*:approximate:*' max-errors 'reply=($((($#PREFIX+$#SUFFIX)/3)) not-numeric )' |