zshrc: Fix functions path in /usr/share
authorFrank Terbeck <ft@grml.org>
Mon, 8 Nov 2010 15:55:32 +0000 (16:55 +0100)
committerFrank Terbeck <ft@grml.org>
Mon, 8 Nov 2010 15:55:38 +0000 (16:55 +0100)
etc/zsh/zshrc

index da60016..40f58d5 100644 (file)
@@ -513,7 +513,7 @@ fi
 isdarwin && xsource /sw/bin/init.sh
 
 # load our function and completion directories
-for fdir in /usr/share/grml/zsh/completion /usr/share/grml/functions; do
+for fdir in /usr/share/grml/zsh/completion /usr/share/grml/zsh/functions; do
     fpath=( ${fdir} ${fdir}/**/*(/N) ${fpath} )
     if [[ ${fpath} == '/usr/share/grml/zsh/functions' ]] ; then
         for func in ${fdir}/**/[^_]*[^~](N.) ; do