summary refs log tree commit diff stats
path: root/hooks/post-up
diff options
context:
space:
mode:
Diffstat (limited to 'hooks/post-up')
-rwxr-xr-xhooks/post-up/zsh9
1 files changed, 4 insertions, 5 deletions
diff --git a/hooks/post-up/zsh b/hooks/post-up/zsh
index 05a7237..1db24bf 100755
--- a/hooks/post-up/zsh
+++ b/hooks/post-up/zsh
@@ -35,10 +35,6 @@ fi
 zrecompile -p -R $ZDOTDIR/.zshrc.zwc $zfiles -- \
 	-M .cache/zsh/compdump
 
-for fp in $ZDOTDIR/functions/*(/); do
-	zrecompile -p $fp $fp/*
-done
-
 if [[ -s $commands[fasd] ]]; then
 	if [[ ! -d $ZDOTDIR/functions/fasd ]]; then
 		mkdir $ZDOTDIR/functions/fasd
@@ -46,7 +42,10 @@ if [[ -s $commands[fasd] ]]; then
 	if [[ ! -h $ZDOTDIR/functions/fasd/fasd ]]; then
 		ln -s =fasd $ZDOTDIR/functions/fasd/fasd
 	fi
-	zrecompile -p $ZDOTDIR/functions/fasd $ZDOTDIR/functions/fasd/fasd
 fi
 
+for fp in $ZDOTDIR/functions/*(/); do
+	zrecompile -p $fp $fp/*
+done
+
 [[ -f ~/.zsh/fasd-data ]] && mv ~/.zsh/fasd-data ~/.cache/zsh/fasd-data