1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-06 01:29:44 +00:00
prezto/modules/python/functions/python-info

22 lines
546 B
Plaintext
Raw Normal View History

#
2012-09-07 03:17:38 +00:00
# Exposes information about the Python environment via the $python_info
# associative array.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
local virtualenv_format
local virtualenv_formatted
# Clean up previous $python_info.
unset python_info
typeset -gA python_info
# Format virtualenv.
if [[ -n "$VIRTUAL_ENV" ]]; then
2012-10-02 02:02:47 +00:00
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