Rename python-info zstyle patterns
This commit is contained in:
parent
8ea0e42b7f
commit
f12c24e76e
|
@ -82,7 +82,7 @@ function prompt_steeef_setup {
|
||||||
zstyle ':vcs_info:*:prompt:*' nvcsformats ""
|
zstyle ':vcs_info:*:prompt:*' nvcsformats ""
|
||||||
|
|
||||||
# Set python-info parameters.
|
# Set python-info parameters.
|
||||||
zstyle ':prezto:module:python' virtualenv '(%v)'
|
zstyle ':prezto:module:python:info:virtualenv' format '(%v)'
|
||||||
|
|
||||||
# Define prompts.
|
# Define prompts.
|
||||||
PROMPT="
|
PROMPT="
|
||||||
|
|
|
@ -89,7 +89,7 @@ To display the name of the current virtual enviroment in a prompt, define the
|
||||||
following style in the `prompt_theme_setup` function.
|
following style in the `prompt_theme_setup` function.
|
||||||
|
|
||||||
# %v - virtualenv name.
|
# %v - virtualenv name.
|
||||||
zstyle ':prezto:module:python' virtualenv 'virtualenv:%v'
|
zstyle ':prezto:module:python:info:virtualenv' format 'virtualenv:%v'
|
||||||
|
|
||||||
Then add `$python_info[virtualenv]` to `$PROMPT` or `$RPROMPT` and call
|
Then add `$python_info[virtualenv]` to `$PROMPT` or `$RPROMPT` and call
|
||||||
`python-info` in the `prompt_theme_preexec` hook function.
|
`python-info` in the `prompt_theme_preexec` hook function.
|
||||||
|
|
|
@ -15,7 +15,7 @@ typeset -gA python_info
|
||||||
|
|
||||||
# Format virtualenv.
|
# Format virtualenv.
|
||||||
if [[ -n "$VIRTUAL_ENV" ]]; then
|
if [[ -n "$VIRTUAL_ENV" ]]; then
|
||||||
zstyle -s ':prezto:module:python' virtualenv 'virtualenv_format'
|
zstyle -s ':prezto:module:python:info:virtualenv' format 'virtualenv_format'
|
||||||
zformat -f virtualenv_formatted "$virtualenv_format" "v:${VIRTUAL_ENV:t}"
|
zformat -f virtualenv_formatted "$virtualenv_format" "v:${VIRTUAL_ENV:t}"
|
||||||
python_info[virtualenv]="$virtualenv_formatted"
|
python_info[virtualenv]="$virtualenv_formatted"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue