source virtualenvwrapper_lazy.sh 2>/dev/null
+ #if [ -n "$VIRTUAL_ENV" ]; then
+ # . "$VIRTUAL_ENV/bin/activate"
+ #fi
+
elif test -n "$KSH_VERSION" -o -n "$FCEDIT"; then
back() { cd - "$@"; }
j() { jobs; }
endif
+if has("python")
+python << END_OF_PYTHON
+import sys, os
+
+virtualenv_dir = os.environ.get('VIRTUAL_ENV')
+if virtualenv_dir:
+ sys.path.insert(0, virtualenv_dir)
+ activate_this = os.path.join(virtualenv_dir, 'bin', 'activate_this.py')
+ execfile(activate_this, dict(__file__=activate_this))
+END_OF_PYTHON
+endif
+
+
" ----------
" From http://slobin.pp.ru/vim/_vimrc.html