我的git消息和Vim的插件Syntastics有问题。
如果我尝试使用以下命令保存消息:
git commit -a
我总是得到错误:
error: There was a problem with the editor 'vi'.
Please supply the message using either -m or -F option.
只有在我的.vimrc中启用了这些行时才会发生这种情况:
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:syntastic_javascript_checkers = ['jshint']
如果我评论这些行,我可以毫无问题地保存我的提交消息。
我该如何解决这个问题?