X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/1b9d8cfe60249746e29fa3a181cf215fc2f67eee..1eff3f3673d73739a8ee6f32d4ee1f7b36817013:/.zsh/zshrc/20_compsys diff --git a/.zsh/zshrc/20_compsys b/.zsh/zshrc/20_compsys index 57811dc..8c389c7 100644 --- a/.zsh/zshrc/20_compsys +++ b/.zsh/zshrc/20_compsys @@ -46,9 +46,9 @@ zstyle ':completion:*:*:*:*' menu select # use colours in completion lists and menus zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} -# ignore working and backup copies +# ignore working and backup copies, and compiled objects zstyle ':completion:*:(all-|)files' ignored-patterns \ - '*.bk' '*.bak' '*.old' '*~' '.*.sw?' + '*.bk' '*.bak' '*.old' '*~' '.*.sw?' '*.o' '*.pyc' zstyle -e ':completion:*:approximate:*' max-errors 'reply=($((($#PREFIX+$#SUFFIX)/3)) numeric )' @@ -94,6 +94,4 @@ zstyle ':completion:*:messages' format '%d' zstyle ':completion:*:warnings' format 'no matches for: %d' zstyle ':completion:*' group-name '' -fignore=(~ .o .pyc) - # vim:ft=zsh