conf2/zsh/.oh-my-zsh/plugins/zsh_reload/zsh_reload.plugin.zsh

13 lines
334 B
Bash
Raw Normal View History

2019-01-12 15:47:23 +00:00
src() {
local cache="$ZSH_CACHE_DIR"
autoload -U compinit zrecompile
compinit -i -d "$cache/zcomp-$HOST"
2020-06-11 14:41:32 +00:00
for f in ${ZDOTDIR:-~}/.zshrc "$cache/zcomp-$HOST"; do
2019-01-12 15:47:23 +00:00
zrecompile -p $f && command rm -f $f.zwc.old
done
# Use $SHELL if available; remove leading dash if login shell
[[ -n "$SHELL" ]] && exec ${SHELL#-} || exec zsh
}