mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
Fix pyenv
segment
This commit is contained in:
parent
d031b3e035
commit
fc39d9d6b8
2 changed files with 29 additions and 6 deletions
13
README.md
13
README.md
|
@ -561,6 +561,19 @@ Variable | Default Value | Description |
|
||||||
|----------|---------------|-------------|
|
|----------|---------------|-------------|
|
||||||
|`POWERLEVEL9K_RBENV_PROMPT_ALWAYS_SHOW`|`false`|Set to true if you wish to show the rbenv segment even if the current Ruby version is the same as the global Ruby version|
|
|`POWERLEVEL9K_RBENV_PROMPT_ALWAYS_SHOW`|`false`|Set to true if you wish to show the rbenv segment even if the current Ruby version is the same as the global Ruby version|
|
||||||
|
|
||||||
|
##### pyenv
|
||||||
|
|
||||||
|
This segment shows the version of Python being used when using `pyenv` to change your current Python stack.
|
||||||
|
|
||||||
|
The `PYENV_VERSION` environment variable will be used if specified. Otherwise it figures out the version being used by taking the output of the `pyenv version-name` command.
|
||||||
|
|
||||||
|
* If `pyenv` is not in $PATH, nothing will be shown.
|
||||||
|
* If the current Python version is the same as the global Python version, nothing will be shown.
|
||||||
|
|
||||||
|
| Variable | Default Value | Description |
|
||||||
|
|----------|---------------|-------------|
|
||||||
|
|`POWERLEVEL9K_PYENV_PROMPT_ALWAYS_SHOW`|`false`|Set to true if you wish to show the pyenv segment even if the current Python version is the same as the global Python version|
|
||||||
|
|
||||||
##### rspec_stats
|
##### rspec_stats
|
||||||
|
|
||||||
See [Unit Test Ratios](#unit-test-ratios), below.
|
See [Unit Test Ratios](#unit-test-ratios), below.
|
||||||
|
|
|
@ -1260,11 +1260,11 @@ prompt_ram() {
|
||||||
"$1_prompt_segment" "$0" "$2" "yellow" "$DEFAULT_COLOR" "$(printSizeHumanReadable "$ramfree" $base)" 'RAM_ICON'
|
"$1_prompt_segment" "$0" "$2" "yellow" "$DEFAULT_COLOR" "$(printSizeHumanReadable "$ramfree" $base)" 'RAM_ICON'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
################################################################
|
||||||
|
# Segment to display rbenv information
|
||||||
set_default POWERLEVEL9K_RBENV_PROMPT_ALWAYS_SHOW false
|
set_default POWERLEVEL9K_RBENV_PROMPT_ALWAYS_SHOW false
|
||||||
# rbenv information
|
|
||||||
prompt_rbenv() {
|
prompt_rbenv() {
|
||||||
if command which rbenv 2>/dev/null >&2; then
|
if ! [ -x "$(command -v rbenv)" ]; then
|
||||||
local rbenv_version_name="$(rbenv version-name)"
|
local rbenv_version_name="$(rbenv version-name)"
|
||||||
local rbenv_global="$(rbenv global)"
|
local rbenv_global="$(rbenv global)"
|
||||||
|
|
||||||
|
@ -1628,11 +1628,21 @@ prompt_virtualenv() {
|
||||||
}
|
}
|
||||||
|
|
||||||
################################################################
|
################################################################
|
||||||
# pyenv: current active python version (with restrictions)
|
# Segment to display pyenv information
|
||||||
# https://github.com/pyenv/pyenv#choosing-the-python-version
|
# https://github.com/pyenv/pyenv#choosing-the-python-version
|
||||||
|
set_default POWERLEVEL9K_PYENV_PROMPT_ALWAYS_SHOW false
|
||||||
prompt_pyenv() {
|
prompt_pyenv() {
|
||||||
if [[ -n "$PYENV_VERSION" ]]; then
|
if ! [ -x "$(command -v pyenv)" ]; then
|
||||||
"$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$PYENV_VERSION" 'PYTHON_ICON'
|
if [[ -n "$PYENV_VERSION" ]]; then
|
||||||
|
"$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$PYENV_VERSION" 'PYTHON_ICON'
|
||||||
|
else
|
||||||
|
local pyenv_version_name="$(pyenv version-name)"
|
||||||
|
local pyenv_global="$(pyenv version-file-read $(pyenv root)/version)"
|
||||||
|
if [[ $pyenv_version_name == $pyenv_global && "$POWERLEVEL9K_PYENV_PROMPT_ALWAYS_SHOW" = false ]]; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
"$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$pyenv_version_name" 'PYTHON_ICON'
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue