我在windows上使用vim,来自cygwin。
我改变了曾经是Windows Python的PYthon,即我的.bashrc包括:
PATH=/cygdrive/c/Python27:$PATH
这会导致syntastic插件失败,因为Windows Python不处理/ cygdrive / c /前缀而不是C:/:
syntastic: error: checker output:
C:\Python27\python.exe: can't open file '/cygdrive/c/[path to my .vim folder]/.vim/bundle/syntastic/syntax_checkers/python/compile.py': [Errno 2] No such file or directory
据我了解,当cygwin终端调用Windows Python时,解决方案将以某种方式改变以/ cygwin / c /开头的文件路径。
如何做到这一点?