summaryrefslogtreecommitdiff
path: root/plugins/python/python.plugin.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/python/python.plugin.zsh')
-rw-r--r--plugins/python/python.plugin.zsh55
1 files changed, 47 insertions, 8 deletions
diff --git a/plugins/python/python.plugin.zsh b/plugins/python/python.plugin.zsh
index 3d7ca55c9..2b139ddf0 100644
--- a/plugins/python/python.plugin.zsh
+++ b/plugins/python/python.plugin.zsh
@@ -43,19 +43,34 @@ function pyuserpaths() {
# Grep among .py files
alias pygrep='grep -nr --include="*.py"'
-# Run proper IPython regarding current virtualenv (if any)
-alias ipython="python3 -c 'import IPython; IPython.terminal.ipapp.launch_new_instance()'"
-
# Share local directory as a HTTP server
alias pyserver="python3 -m http.server"
-## venv utilities
+## venv settings
+: ${PYTHON_VENV_NAME:=venv}
+
+# Array of possible virtual environment names to look for, in order
+# -U for removing duplicates
+typeset -gaU PYTHON_VENV_NAMES
+[[ -n "$PYTHON_VENV_NAMES" ]] || PYTHON_VENV_NAMES=($PYTHON_VENV_NAME venv .venv)
# Activate a the python virtual environment specified.
-# If none specified, use 'venv'.
+# If none specified, use the first existing in $PYTHON_VENV_NAMES.
function vrun() {
- local name="${1:-venv}"
+ if [[ -z "$1" ]]; then
+ local name
+ for name in $PYTHON_VENV_NAMES; do
+ local venvpath="${name:P}"
+ if [[ -d "$venvpath" ]]; then
+ vrun "$name"
+ return $?
+ fi
+ done
+ echo >&2 "Error: no virtual environment found in current directory"
+ fi
+
+ local name="${1:-$PYTHON_VENV_NAME}"
local venvpath="${name:P}"
if [[ ! -d "$venvpath" ]]; then
@@ -72,12 +87,36 @@ function vrun() {
echo "Activated virtual environment ${name}"
}
-# Create a new virtual environment, with default name 'venv'.
+# Create a new virtual environment using the specified name.
+# If none specified, use $PYTHON_VENV_NAME
function mkv() {
- local name="${1:-venv}"
+ local name="${1:-$PYTHON_VENV_NAME}"
local venvpath="${name:P}"
python3 -m venv "${name}" || return
echo >&2 "Created venv in '${venvpath}'"
vrun "${name}"
}
+
+if [[ "$PYTHON_AUTO_VRUN" == "true" ]]; then
+ # Automatically activate venv when changing dir
+ function auto_vrun() {
+ # deactivate if we're on a different dir than VIRTUAL_ENV states
+ # we don't deactivate subdirectories!
+ if (( $+functions[deactivate] )) && [[ $PWD != ${VIRTUAL_ENV:h}* ]]; then
+ deactivate > /dev/null 2>&1
+ fi
+
+ if [[ $PWD != ${VIRTUAL_ENV:h} ]]; then
+ local file
+ for file in "${^PYTHON_VENV_NAMES[@]}"/bin/activate(N.); do
+ # make sure we're not in a venv already
+ (( $+functions[deactivate] )) && deactivate > /dev/null 2>&1
+ source $file > /dev/null 2>&1
+ break
+ done
+ fi
+ }
+ add-zsh-hook chpwd auto_vrun
+ auto_vrun
+fi