Compile files into a pre-parsed form for faster sourcing.

This commit is contained in:
Sorin Ionescu 2011-07-28 17:00:56 -04:00
parent e2eeef5f86
commit 9f4b8793e7
2 changed files with 24 additions and 8 deletions

6
.gitignore vendored
View File

@ -1,4 +1,2 @@
locals.zsh
log/.zsh_history
projects.zsh
cache
*.zwc
*.zwc.old

View File

@ -26,8 +26,26 @@ done
# Load and run the prompt theming system.
autoload -Uz promptinit && promptinit -i
# Compile zcompdump, if modified, to increase startup speed.
if [[ "$HOME/.zcompdump" -nt "$HOME/.zcompdump.zwc" ]] || [[ ! -e "$HOME/.zcompdump.zwc" ]]; then
zcompile "$HOME/.zcompdump"
fi
# Load the automatic recompiler.
autoload -Uz zrecompile
# Compile files.
for zsh_file in $HOME/.z{login,logout,profile,shenv,shrc,compdump}(N) $OMZ/*.zsh(N); do
zrecompile -q -p -U -z "$zsh_file"
done
# Compile function directories.
for (( i=1; i <= $#fpath; i++ )); do
function_dir="$fpath[i]"
[[ "$function_dir" == (.|..) ]] \
|| [[ "$function_dir" == (.|..)/* ]] \
|| [[ ! -w "$function_dir:h" ]] && continue
function_files=($function_dir/^*(\.(rej|orig)|~|\#)(N-.))
[[ -n "$function_files" ]] \
&& function_files=(${${(M)function_files%/*/*}#/}) \
&& ( cd "$function_dir:h" && zrecompile -q -p -U -z "${function_dir:t}.zwc" "$function_files[@]" ) \
&& fpath[i]="$fpath[i].zwc"
done
unset function_dir
unset function_files