You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hexiaoming edited this page Oct 21, 2015
·
1 revision
##安装xg-htmlhint
npm install -g xg-htmlhint
##编辑配置文件.vimrc
打开vim的配置文件(默认路径):
vim ~/.vimrc
在配置文件末尾添加:
autocmd BufWritePost,FileWritePost *.html ks|call AutoRun()|'s
fun AutoRun()
let file = bufname('%')
w !cat %:p > htmlhint.html
w !htmlhint htmlhint.html
w !rm htmlhint.html
endfun