]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zprofile/40_zcompile
set paths in zshenv!
[zsh.git] / .zsh / zprofile / 40_zcompile
1 # zlogin/40_zcompile
2 #
3 # compile zsh snippets
4 #
5 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
7 #
8 # Source repository: http://git.madduck.net/v/etc/zsh.git
9 #
10
11 if [ -n "$ZDOTDIR" ] && [ -d "$ZDOTDIR" ]; then
12   rm -f $ZDOTDIR/**/*.zwc(D.N)
13   for f ($ZDOTDIR/*[^$ZDOTDIR/.gitignore](D.,@) $ZDOTDIR/**/*(.)) zcompile $f
14 fi
15
16 if [ -n "$ZVARDIR" ] && [ -d "$ZVARDIR" ]; then
17   rm -f $ZVARDIR/**/*.zwc(.N)
18   for f ($ZVARDIR/comp*(.)) zcompile $f
19 fi
20
21 # vim:ft=zsh