From: Simon Ruderich Date: Sat, 6 Aug 2011 12:43:55 +0000 (+0200) Subject: zsh/rc: Minor rewrapping cleanup. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=48ba4283aa92a9d3fd590a31aa632a861b5477c6;p=config%2Fdotfiles.git zsh/rc: Minor rewrapping cleanup. --- diff --git a/zsh/rc b/zsh/rc index 37ca7a1..aafa2d3 100644 --- a/zsh/rc +++ b/zsh/rc @@ -504,8 +504,9 @@ zstyle ':completion:*:*:-command-:*' ignored-patterns './config.*' # Don't complete unwanted files with Vim. Thanks to Nomexous in #zsh on # Freenode (2010-06-06 04:54 CEST). See below for a way to complete them. -zstyle ':completion:*:*:vim:*:all-files' ignored-patterns '*.aux' '*.log' \ - '*.pdf' '*.class' +zstyle ':completion:*:*:vim:*:all-files' ignored-patterns \ + '*.aux' '*.log' '*.pdf' \ + '*.class' # Provide a fallback completer which always completes files. Useful when Zsh's # completion is too "smart". Thanks to Frank Terbeck