我寫了一個python腳本。我的vimrc包含:如何定製vim-syntastic?
Plug 'vim-syntastic/syntastic'
let g:syntastic_python_checkers=['pyflakes']
,我想打開這種類型的錯誤到警告:
File.py|214 error| local variable 'rank_last_c' is assigned to but never used
和我的代碼是這樣的:
def run():
...
find(something)
...
def find(n):
...
顯然,函數'find(n)'被定義。 但有錯誤這樣的:
File.py|149 error| undefined name 'find'
我應該怎麼做定製我的syntastic?
你似乎有兩個不同的問題。 – chepner