]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh/rc: Always use -Uz for autoload.
authorSimon Ruderich <simon@ruderich.org>
Mon, 2 May 2011 00:59:34 +0000 (02:59 +0200)
committerSimon Ruderich <simon@ruderich.org>
Mon, 2 May 2011 01:53:39 +0000 (03:53 +0200)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index d7106f4e0145d90795a1603df4795b311b4ac622..a59bf29ae4e745578c7bff55818ff0306bd0e4e3 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -61,7 +61,7 @@ fpath=(~/.zsh/functions $fpath)
 # Autoload my functions (except completion functions and hidden files). Thanks
 # to caphuso from the Zsh example files for this idea.
 if [[ -d ~/.zsh/functions ]]; then
-    autoload ${fpath[1]}/^_*(^/:t)
+    autoload -Uz ${fpath[1]}/^_*(^/:t)
 fi
 
 # Simulate hooks using _functions arrays for Zsh versions older than 4.3.4. At
@@ -96,7 +96,7 @@ fi
 autoload -Uz add-zsh-hook
 
 # Load zmv (zsh move) which is powerful to rename files.
-autoload zmv
+autoload -Uz zmv
 
 
 # HISTORY SETTINGS
@@ -143,7 +143,7 @@ bindkey -a '^N' history-beginning-search-forward
 # PROMPT SETTINGS
 
 # Use colorized output, necessary for prompts and completions.
-autoload -U colors && colors
+autoload -Uz colors && colors
 
 # Necessary for $EPOCHSECONDS, the UNIX time.
 zmodload zsh/datetime
@@ -451,7 +451,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 -U compinit && compinit -d ~/.zsh/cache/zcompdump
+autoload -Uz compinit && compinit -d ~/.zsh/cache/zcompdump
 
 # Use cache to speed up completions.
 zstyle ':completion:*' use-cache on