Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
823be4ef
Unverified
Commit
823be4ef
authored
Sep 03, 2021
by
Marc Cornellà
Browse files
feat(pyenv): silence bad config warning with `ZSH_PYENV_QUIET=true`
parent
c08fb77c
Changes
2
Show whitespace changes
Inline
Side-by-side
plugins/pyenv/README.md
View file @
823be4ef
...
...
@@ -10,6 +10,11 @@ To use it, add `pyenv` to the plugins array in your zshrc file:
plugins
=(
... pyenv
)
```
## Settings
-
`ZSH_PYENV_QUIET`
: if set to
`true`
, the plugin will not print any messages if it
finds that
`pyenv`
is not properly configured.
## Functions
-
`pyenv_prompt_info`
: displays the Python version in use by pyenv; or the global Python
...
...
plugins/pyenv/pyenv.plugin.zsh
View file @
823be4ef
pyenv_config_warning
()
{
[[
"
$ZSH_PYENV_QUIET
"
!=
true
]]
||
return
0
local
reason
=
"
$1
"
local
pyenv_root
=
"
${
PYENV_ROOT
/#
$HOME
/\
$HOME
}
"
cat
>
&2
<<
EOF
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment