Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the +e plugins not working #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ source xxh.zsh myhost
Xxh support environment variables: `xxh myhost +e NAME=VAL` or `~/.config/xxh/config.xxhc` (`$XDG_CONFIG_HOME`) config.

* `+e ZSH_THEME=clean` - set theme
* `+e plugins="(git ubuntu)"` - set plugins list
* `+e plugins_="(git ubuntu)"` - set plugins list
5 changes: 3 additions & 2 deletions pluginrc.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ else
export ZSH_THEME="agnoster"
fi

if [[ -v plugins ]]; then
if [[ -v plugins_ ]]; then
if [[ $XXH_VERBOSE == '2' ]]; then
echo $plugin_name: Found plugins=$plugins
echo $plugin_name: Found plugins=$plugins_
eval "export plugins=$plugins_"
fi
else
if [[ $XXH_VERBOSE == '2' ]]; then
Expand Down