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 ""
|
||||
|
||||
# Set python-info parameters.
|
||||
zstyle ':prezto:module:python' virtualenv '(%v)'
|
||||
zstyle ':prezto:module:python:info:virtualenv' format '(%v)'
|
||||
|
||||
# Define prompts.
|
||||
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.
|
||||
|
||||
# %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
|
||||
`python-info` in the `prompt_theme_preexec` hook function.
|
||||
|
|
|
@ -15,7 +15,7 @@ typeset -gA python_info
|
|||
|
||||
# Format virtualenv.
|
||||
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}"
|
||||
python_info[virtualenv]="$virtualenv_formatted"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue