zsh_reload: fix code style and indent with tabs

This commit is contained in:
Marc Cornellà 2016-10-26 20:04:14 +02:00
parent 9a71864288
commit 9a7c56dcdd
1 changed files with 8 additions and 10 deletions

View File

@ -1,13 +1,11 @@
# reload zshrc
function src()
{
local cache=$ZSH_CACHE_DIR
autoload -U compinit zrecompile
compinit -d "$cache/zcomp-$HOST"
src() {
local cache="$ZSH_CACHE_DIR"
autoload -U compinit zrecompile
compinit -d "$cache/zcomp-$HOST"
for f in ~/.zshrc "$cache/zcomp-$HOST"; do
zrecompile -p $f && command rm -f $f.zwc.old
done
for f in ~/.zshrc "$cache/zcomp-$HOST"; do
zrecompile -p $f && command rm -f $f.zwc.old
done
source ~/.zshrc
source ~/.zshrc
}