mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Merge pull request #2681 from mcornella/fix-zsh_reload-plugin
Various fixes on zsh_reload plugin
This commit is contained in:
commit
11bf1a3a29
1 changed files with 6 additions and 7 deletions
|
@ -1,13 +1,12 @@
|
|||
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
|
||||
compinit -d "$ZSH/cache/zcomp-$HOST"
|
||||
|
||||
for f in ~/.zshrc "$ZSH/cache/zcomp-$HOST"; do
|
||||
zrecompile -p $f && command rm -f $f.zwc.old
|
||||
done
|
||||
|
||||
source ~/.zshrc
|
||||
}
|
Loading…
Reference in a new issue