]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh/rc: replace useless && after autoload with ;
authorSimon Ruderich <simon@ruderich.org>
Sun, 16 Mar 2014 17:41:46 +0000 (18:41 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 16 Mar 2014 17:41:46 +0000 (18:41 +0100)
autoload always returns true.

zsh/rc

diff --git a/zsh/rc b/zsh/rc
index afc78b0039ffb68ad45c17b5a12b453d50296d0b..ae2a92d3d4d287aef31368b6c2ba3c20ad5aaf9a 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -205,7 +205,7 @@ setopt pushdminus
 # PROMPT SETTINGS
 
 # Use colorized output, necessary for prompts and completions.
-autoload -Uz colors && colors
+autoload -Uz colors; colors
 
 # Necessary for $EPOCHSECONDS, the UNIX time.
 zmodload zsh/datetime
@@ -629,7 +629,7 @@ zmodload zsh/complist
 # cluttering of ~/. $fpath must be set before calling this. Thanks to Adlai in
 # #zsh on Freenode (2009-08-07 21:05 CEST) for reminding me of the $fpath
 # problem.
-autoload -Uz compinit && compinit -d ~/.zsh/cache/zcompdump
+autoload -Uz compinit; compinit -d ~/.zsh/cache/zcompdump
 
 # Use cache to speed up some slow completions (dpkg, perl modules, etc.).
 zstyle ':completion:*' use-cache yes