1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 23:40:39 +01:00
Files
oh-my-zsh/plugins/zsh_reload/zsh_reload.plugin.zsh
2018-04-22 12:50:00 +02:00

12 lines
223 B
Bash

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
source ~/.zshrc
}