我已经在 vim 中安装了Syntastic插件。我无法让它工作。我试过:SyntasticEnable
但没有运气。SyntasticEnable python
在我的 vimrc中也不起作用(事实上,它甚至不解析命令,当我尝试将它添加到我的.vimrc
:时会显示错误Not an editor command: SyntasticEnable python
)。
我怎么知道发生了什么事?当我从 vim 调用 Syntastic 时,它没有显示错误。第一个错误(not and editor command
在 my 中.vimrc
)是否表示我不知道的事情?
我的 .vimrc 中有:
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_enable_signs=1
let g:syntastic_auto_loc_list=1
我也有一个python.vim
。~/.vim/syntax_checkers
我已经可以将Pyflakes用于 python 文件,它工作得很好,但我希望在开发应用程序时需要的其他文件/扩展中具有 Syntastic 功能。