feat(cli)!: add `omz reload` command and deprecate `zsh_reload` plugin (#9078)
BREAKING CHANGE: the `zsh_reload` plugin is deprecated. Instead of using its `src` function, use `omz reload` or `exec zsh` to reload zsh after making changes to your `.zshrc` file. Closes #9078master
parent
56ab66b194
commit
be4a952972
3 changed files with 18 additions and 41 deletions
@ -1,23 +1,3 @@ |
|||||||
# zsh_reload plugin |
# zsh_reload plugin |
||||||
|
|
||||||
The zsh_reload plugin defines a function to reload the zsh session with |
**This plugin is deprecated.** Use `omz reload` or `exec zsh` instead. |
||||||
just a few keystrokes. |
|
||||||
|
|
||||||
To use it, add `zsh_reload` to the plugins array in your zshrc file: |
|
||||||
|
|
||||||
```zsh |
|
||||||
plugins=(... zsh_reload) |
|
||||||
``` |
|
||||||
|
|
||||||
## Usage |
|
||||||
|
|
||||||
To reload the zsh session, just run `src`: |
|
||||||
|
|
||||||
```zsh |
|
||||||
$ vim ~/.zshrc # enabled a plugin |
|
||||||
$ src |
|
||||||
re-compiling /home/user/.zshrc.zwc: succeeded |
|
||||||
re-compiling /home/user/.oh-my-zsh/cache/zcomp-host.zwc: succeeded |
|
||||||
|
|
||||||
# you now have a fresh zsh session. happy hacking! |
|
||||||
``` |
|
||||||
|
|||||||
@ -1,22 +1,7 @@ |
|||||||
src() { |
print ${(%):-"%F{yellow}The \`zsh_reload\` plugin is deprecated and will be removed."} |
||||||
local cache="$ZSH_CACHE_DIR" |
print ${(%):-"Use \`%Bomz reload%b\` or \`%Bexec zsh%b\` instead.%f"} |
||||||
autoload -U compinit zrecompile |
|
||||||
compinit -i -d "$cache/zcomp-$HOST" |
|
||||||
|
|
||||||
for f in ${ZDOTDIR:-~}/.zshrc "$cache/zcomp-$HOST"; do |
|
||||||
zrecompile -p $f && command rm -f $f.zwc.old |
|
||||||
done |
|
||||||
|
|
||||||
# Use $SHELL if it's available and a zsh shell |
src() { |
||||||
local shell="$ZSH_ARGZERO" |
print ${(%):-"%F{yellow}$0 is deprecated. Use \`%Bomz reload%b\` or \`%Bexec zsh%b\` instead.%f\n"} |
||||||
if [[ "${${SHELL:t}#-}" = zsh ]]; then |
omz reload |
||||||
shell="$SHELL" |
|
||||||
fi |
|
||||||
|
|
||||||
# Remove leading dash if login shell and run accordingly |
|
||||||
if [[ "${shell:0:1}" = "-" ]]; then |
|
||||||
exec -l "${shell#-}" |
|
||||||
else |
|
||||||
exec "$shell" |
|
||||||
fi |
|
||||||
} |
} |
||||||
|
|||||||
Loading…
Reference in new issue