我已经用 Pathogen 安装了 Syntastic,并尝试了所有我能想到的让 Syntastic 识别我的 pylint 检查器。
Pylint 检查器安装在这里
/home/myself/.local/bin/pylint
我呼应了我的道路和
/home/myself/.local/bin
确实在 $PATH 变量中。
我的 .vimrc 看起来像这样
set tabstop=4
execute pathogen#infect()
syntax on
filetype plugin indent on
let g:syntastic_mode_map = { 'mode': 'passive',
\ 'active_filetypes': ['python'],
\ 'passive_filetypes': ['perl'] }
let g:syntastic_python_checkers = ['pylint', 'python']
然而当我运行命令时
SyntasticInfo
在 vim 里面,我仍然看到
Syntastic: passive mode enabled
Syntastic version: 3.4.0-79
Info for filetype:
Available checker(s):
Currently enabled checker(s):
花了很多时间在谷歌上搜索这个,有没有人知道我忘记了什么?
编辑/回答:如果其他人需要这样的帮助,做
:setfiletype python
似乎把事情做对了。