├── .gitignore ├── CHANGES.markdown ├── Makefile ├── README.md ├── after └── syntax │ └── html.vim ├── autoload ├── htmlcomplete.vim └── xml │ ├── aria.vim │ └── html5.vim ├── config.mk ├── ftplugin └── html.vim ├── indent └── html.vim └── syntax ├── html.vim ├── html ├── aria.vim ├── electron.vim └── rdfa.vim └── javascript └── html5.vim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/CHANGES.markdown -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/README.md -------------------------------------------------------------------------------- /after/syntax/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/after/syntax/html.vim -------------------------------------------------------------------------------- /autoload/htmlcomplete.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/autoload/htmlcomplete.vim -------------------------------------------------------------------------------- /autoload/xml/aria.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/autoload/xml/aria.vim -------------------------------------------------------------------------------- /autoload/xml/html5.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/autoload/xml/html5.vim -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- 1 | VERSION=0.26 2 | 3 | -------------------------------------------------------------------------------- /ftplugin/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/ftplugin/html.vim -------------------------------------------------------------------------------- /indent/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/indent/html.vim -------------------------------------------------------------------------------- /syntax/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/syntax/html.vim -------------------------------------------------------------------------------- /syntax/html/aria.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/syntax/html/aria.vim -------------------------------------------------------------------------------- /syntax/html/electron.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/syntax/html/electron.vim -------------------------------------------------------------------------------- /syntax/html/rdfa.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/syntax/html/rdfa.vim -------------------------------------------------------------------------------- /syntax/javascript/html5.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/othree/html5.vim/HEAD/syntax/javascript/html5.vim --------------------------------------------------------------------------------