]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh/rc: Minor rewrapping cleanup.
authorSimon Ruderich <simon@ruderich.org>
Sat, 6 Aug 2011 12:43:55 +0000 (14:43 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 6 Aug 2011 12:43:55 +0000 (14:43 +0200)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 37ca7a1f33e54f4914d188eedebc6760f701b837..aafa2d343aa98d4ad320ba702c9c750a5bc7ce0a 100644 (file)
--- 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 <ft@bewatermyfriend.org>