1

我有 activate.bat 和其他一些对我的 python 应用程序至关重要的配置。似乎vim可以通过使用其内置的python功能进入virtualenv,但我看不到在vim中调用批处理文件的方法。

从其他批处理文件加载批处理文件很简单,例如:

foo.bat

set "FOO=BAR"

吧.bat

call foo.bat
echo %FOO% #outputs bar

如何将外部批处理文件加载到我可以使用从中声明的变量的 vim 中?我在 Windows 7 上,我使用gvim 7.4.

4

1 回答 1

0

看看:https://github.com/jmcantrell/vim-virtualenvhttp://www.vim.org/scripts/script.php?script_id=3840。这些非常适合在 python 中使用 virtualenvs。它们有点像virtualenvwrapperVim。

于 2013-09-01T05:57:11.557 回答