From 507cf4ce9b7c8b66c2ac44c96179ecddf7667fba Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Thu, 12 Apr 2012 08:04:46 -0400 Subject: [PATCH] Cache fasd initialization --- modules/fasd/init.zsh | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/modules/fasd/init.zsh b/modules/fasd/init.zsh index ee90d745..11381473 100644 --- a/modules/fasd/init.zsh +++ b/modules/fasd/init.zsh @@ -6,7 +6,29 @@ if (( ! $+commands[fasd] )); then return 1 fi -eval "$(fasd --init-zsh)" +cache_file="${0:h}/cache.zsh" +if [[ ! -s "$cache_file" ]]; then + # fasd is slow; cache its output. + # fasd --init-zsh >! "$cache_file" 2> /dev/null + # fasd --init \ + # posix-alias \ + # zsh-hook \ + # zsh-ccomp \ + # zsh-ccomp-install \ + # zsh-wcomp \ + # zsh-wcomp-install >! "$cache_file" 2> /dev/null + + init_args='posix-alias zsh-hook' + if -t zstyle ':omz:module:completion' loaded; then + init_args+='zsh-ccomp zsh-ccomp-install zsh-wcomp zsh-wcomp-install' + fi + + fasd --init "${(z)init_args[@]}" >! "$cache_file" 2> /dev/null +fi + +source "$cache_file" + +unset cache_file init_args alias a='fasd -a' # any alias s='fasd -s' # show / search / select