all repos — archive/dotfiles @ 53861212825c8cf6096a30e1d047931286e85846

Superseded by nixfiles

zsh: Compile fasd and use as a function.
Alan Pearce alan@alanpearce.co.uk
Sun, 13 Apr 2014 09:50:36 +0100
commit

53861212825c8cf6096a30e1d047931286e85846

parent

ee6d56fdaba008f2b16afdbd400021afa6231b36

2 files changed, 11 insertions(+), 0 deletions(-)

jump to
M hooks/post-up/zshhooks/post-up/zsh
@@ -39,4 +39,14 @@ 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
+	fi
+	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
+
 [[ -f ~/.zsh/fasd-data ]] && mv ~/.zsh/fasd-data ~/.cache/zsh/fasd-data
M tag-zsh/config/zsh/zshrctag-zsh/config/zsh/zshrc
@@ -355,6 +355,7 @@ fi }
 
 _FASD_DATA="$HOME/.cache/zsh/fasd-data"
+autoload -U fasd
 source ~/.cache/zsh/fasd-init-zsh
 
 if [[ $OSTYPE == freebsd* ]]; then