From: martin f. krafft Date: Sun, 18 May 2008 16:11:03 +0000 (+0100) Subject: fold fignore into ignored-patterns X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/7da3d2f3805e49dc57e5c41e0fc9581e6f001bb2 fold fignore into ignored-patterns --- 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