all repos — archive/dotfiles @ 3d9fbb2a793e60a503692e000cae19d7ef96fa54

Superseded by nixfiles

Zsh: hide error when fasd init file missing

Now show a warning instead
Alan Pearce ap@studio-40.com
Sun, 01 Jun 2014 14:21:06 +0100
commit

3d9fbb2a793e60a503692e000cae19d7ef96fa54

parent

8fc6d71a515a7023b3f9368242d624b60ba14159

1 files changed, 6 insertions(+), 1 deletions(-)

jump to
M tag-zsh/config/zsh/zshrctag-zsh/config/zsh/zshrc
@@ -356,7 +356,12 @@ } 
 _FASD_DATA="$HOME/.cache/zsh/fasd-data"
 autoload -U fasd
-source ~/.cache/zsh/fasd-init-zsh
+if [[ -e ~/.cache/zsh/fasd-init-zsh ]]
+then
+	source ~/.cache/zsh/fasd-init-zsh
+else
+	echo "fasd init file is missing."
+fi
 
 if [[ $OSTYPE == freebsd* ]]; then
 	source $ZDOTDIR/freebsd.zsh