2016-11-11 59 views
0

我是vim新手,我剛剛安裝了syntastic,我的問題是如何激活合成檢查htmldjango類型,我已經安裝了pylint和pylint-django,這是我的SyntasticInfodjango在.vimrc html合成配置

Syntastic version: 3.8.0-3 (Vim 800, Linux, GUI) 
Info for filetype: htmldjango 
Global mode: active 
Filetype htmldjango is active 
The current file will be checked automatically 
Available checkers: - 
Currently enabled checkers: - 

三江源

+1

Syntastic對'htmldjango'沒有任何有用的檢查器。無論如何,你應該考慮閱讀手冊。 –

+0

謝謝佐藤桂夫 –

回答

2

有這是行不通的原因有兩個。首先,要獲得pylint的,Django的,以「嘗試」來檢查htmldjango文件,你必須插入到你的.vimrc文件這樣的:

let g:syntastic_python_pylint_args = "--load-plugins pylint_django" 
let g:syntastic_htmldjango_checkers = ['python/pylint'] 

請注意,您必須指定'python/pylint'的檢查,因爲這是對htmldjango文件類型的外部檢查程序。

這將解決您的問題SyntasticInfo

Currently enabled checker: python/pylint 

無論其,目前的python-pylint的不都這樣即使一旦你做到了這一點,你會很失望支持djangohtml模板和得到各種語法錯誤...因爲檢查器只支持django模型和查看文件類型...( - ‸ლ)

+0

感謝您的建議 –