Syntastic文档(:help syntastic-pymode
)解释了如何做:
[...]为避免两个插件都打开错误窗口,您可以在syntastic中为python设置被动模式(请参见syntastic_mode_map),或在“ python-mode”中禁用lint检查,[...]
因此,您应该能够在文件中禁用类似以下内容的Python文件的自动语法检查功能$MYVIMRC
:
let g:syntastic_mode_map = { 'passive_filetypes': ['python'] }