Browse Source

Merge pull request #1779 from lorn/fasd_update

Cache for fasd --init
Robby Russell 11 years ago
parent
commit
b427a41fd3
1 changed files with 6 additions and 1 deletions
  1. 6 1
      plugins/fasd/fasd.plugin.zsh

+ 6 - 1
plugins/fasd/fasd.plugin.zsh

@@ -1,5 +1,10 @@
 if [ $commands[fasd] ]; then # check if fasd is installed
-  eval "$(fasd --init auto)"
+  fasd_cache="$HOME/.fasd-init-cache"
+  if [ "$(command -v fasd)" -nt "$fasd_cache" -o ! -s "$fasd_cache" ]; then
+    fasd --init auto >| "$fasd_cache"
+  fi
+  source "$fasd_cache"
+  unset fasd_cache
   alias v='f -e vim'
   alias o='a -e open'
 fi