这是我使用的(很抱歉,突出显示的内容很奇怪)。
" Function to activate a virtualenv in the embedded interpreter for" omnicomplete and other things like that.function LoadVirtualEnv(path) let activate_this = a:path . '/bin/activate_this.py' if getftype(a:path) == "dir" && filereadable(activate_this) python << EOFimport vimactivate_this = vim.eval('l:activate_this')execfile(activate_this, dict(__file__=activate_this))EOF endifendfunction" Load up a 'stable' virtualenv if one exists in ~/.virtualenvlet defaultvirtualenv = $HOME . "/.virtualenvs/stable"" only attempt to load this virtualenv if the defaultvirtualenv" actually exists, and we aren't running with a virtualenv active.if has("python") if empty($VIRTUAL_ENV) && getftype(defaultvirtualenv) == "dir" call LoadVirtualEnv(defaultvirtualenv) endifendif
请注意,您需要针对用于virtualenv的Python编译MacVim,例如,如果您从Python.org下载了Python
2.7,则应使用
--with-python-config-dir=/Library/frameworks/Python.framework/Versions/2.7/lib/python2.7/config作为参数重新编译MacVim
./configure。
希望有帮助!
编辑: 只需注明 出处:
写这个小东西的许多侦探工作都是由这个博客完成的,他应该得到一些荣誉。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)