mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
405b8f220a
`source ~/.zshrc` is a bad practice, it doesn't make sure that the full zsh session is reloaded and it may have side effects. Use `$SHELL` as the path to zsh if it exists (this will fix edge cases where the zsh used is not the first on $PATH). Otherwise, use `zsh`.
12 lines
322 B
Bash
12 lines
322 B
Bash
src() {
|
|
local cache="$ZSH_CACHE_DIR"
|
|
autoload -U compinit zrecompile
|
|
compinit -i -d "$cache/zcomp-$HOST"
|
|
|
|
for f in ~/.zshrc "$cache/zcomp-$HOST"; do
|
|
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
|
|
}
|