Commit d41c588d authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #672 from eMxyzptlk/zsh_reload

Add zsh_reload which provides src function, this function will source .zshrc and rebuilds cache
parents d8a5fff1 40508b79
zsh_cache=$HOME/.zsh_cache
mkdir -p $zsh_cache
# reload zshrc
function src()
{
autoload -U compinit zrecompile
compinit -d $zsh_cache/zcomp-$HOST
for f in $HOME/.zshrc $zsh_cache/zcomp-$HOST; do
zrecompile -p $f && rm -f $f.zwc.old
done
source ~/.zshrc
}
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment