From ce4dc6fac28028d82099b969bead1966bfbfb0ad Mon Sep 17 00:00:00 2001 From: Steve Losh Date: Sat, 27 Feb 2010 16:55:53 -0500 Subject: [PATCH] Add the cdv alias to cd to the virtualenvs directory. --- lib/python.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/python.zsh b/lib/python.zsh index 79c8e151e..1eeb65741 100644 --- a/lib/python.zsh +++ b/lib/python.zsh @@ -1,3 +1,5 @@ function wo() { [ -f './.venv' ] && workon `cat ./.venv` } + +alias cdv='cd $WORKON_HOME'