summaryrefslogtreecommitdiffstats
path: root/.zsh/functions/venv
diff options
context:
space:
mode:
Diffstat (limited to '.zsh/functions/venv')
-rw-r--r--.zsh/functions/venv15
1 files changed, 15 insertions, 0 deletions
diff --git a/.zsh/functions/venv b/.zsh/functions/venv
new file mode 100644
index 0000000..03ec83d
--- /dev/null
+++ b/.zsh/functions/venv
@@ -0,0 +1,15 @@
+# -*- mode: sh; -*-
+if [ "${#}" -eq 1 ]; then
+ local venv_activate="$HOME/.virtualenv/$1/bin/activate"
+
+ if [ -r "$venv_activate" ]; then
+ source $venv_activate
+ else
+ echo "$1 is not a know virtual environment"
+ fi
+else
+ echo "Virtual environments: "
+ for itm in ~/.virtualenv/*; do
+ echo " $(basename $itm)"
+ done
+fi