我安装了以下 vim 插件:
Plugin 'othree/html5.vim'
Plugin 'scrooloose/syntastic'
但是,具有以下 html 块:
<form novalidate>
</form>
显示:
<form> propritary attribute "novalidate"
为了防止错误,我必须明确地说(在我的~/.vimrc
):
let g:syntastic_html_tidy_ignore_errors=["<form> proprietary attribute \"novalidate\""]
我仍然认为othree/html5.vim
插件可以在这里完成工作。
为什么不是这样?