I am wondering how I might set vim to color the new html5 elements (ie "canvas" and "video") as it does with the existing "script", "body" elements (or reserved words in other languages like python's "def") etc. Current version is from MacPorts typically used in a terminal emulator.
|
These lines define syntax keywords. In this case they specifically define HTML tag names. The first line tells Vim to color
Vim will now color However if you update the built-in There are a large number of the HTML 5 elements and arguments in this gist mentioned by @user240515 below. Paste the contents of this into your newly create Consult |
|||||
|
|
Thanks for this question, and thanks for the accepted answer! This is a complete list of the new tags to add for html 5, as they are defined at the time of writing:
|
|||
|
|
|
Just put the following file in ~/.vim/syntax: |
|||||
|
|
I'm just about to try this one: http://github.com/othree/html5.vim Seems pretty complete. EDIT: I don't see anything about indentation. :( EDIT [12/23/2012]: I do :) But maybe is was added later: https://github.com/othree/html5.vim/tree/master/indent |
||||
|
|
Indentation can be supported using an approach similar to that described by michaelmichael for extending the
These lines are defining the tags that will trigger basic tag indenting. Extend this list with any HTML5 tags that you want to have trigger indenting. I added the following to the end of this list:
Indenting will now be triggered on the HTML5 tags listed above. |
|||
|
|
|
I added an html5 indent file to a fork of othree/html5.vim based on the suggestions above. |
|||
|
|