浏览代码

Merge pull request #1878 from spazm/virtualenv-cleanup

virtualenv cleanup: replaces subshell with prompt expansion.
Robby Russell 11 年之前
父节点
当前提交
b8af807b43
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. 3 4
      plugins/virtualenv/virtualenv.plugin.zsh

+ 3 - 4
plugins/virtualenv/virtualenv.plugin.zsh

@@ -1,9 +1,8 @@
 function virtualenv_prompt_info(){
-  local virtualenv_path="$VIRTUAL_ENV"
-  if [[ -n $virtualenv_path ]]; then
-    local virtualenv_name=`basename $virtualenv_path`
-    printf "%s[%s] " "%{${fg[yellow]}%}" $virtualenv_name
+  if [[ -n $VIRTUAL_ENV ]]; then
+    printf "%s[%s] " "%{${fg[yellow]}%}" ${${VIRTUAL_ENV}:t}
   fi
 }
 
+# disables prompt mangling in virtual_env/bin/activate
 export VIRTUAL_ENV_DISABLE_PROMPT=1