]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zprofile/40_zcompile
improve vcsh prompt integration
[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: git://git.madduck.net/etc/zsh.git
9 #
10
11 if [ -n "$ZDOTDIR" ] && [ -d "$ZDOTDIR" ]; then
12   rm -f $ZDOTDIR/**/*.zwc{,.old}(D.N)
13   for f in $ZDOTDIR/*(D.,@) $ZDOTDIR/**/*(.); do
14     case "$f:t" in
15       .gitignore|.*.sw?) continue;;
16     esac
17     zcompile $f
18   done
19 fi
20
21 if [ -n "$ZVARDIR" ] && [ -d "$ZVARDIR" ]; then
22   rm -f $ZVARDIR/**/*.zwc{,.old}(.N)
23   for f in $ZVARDIR/comp*(.N); do
24     case "$f:t" in
25       .gitignore|.*.sw?) continue;;
26     esac
27     zcompile $f
28   done
29 fi
30
31 # vim:ft=zsh