Vim Tips Wiki
(should we delete this tip?)
Line 35: Line 35:
 
:#We should delete this tip.
 
:#We should delete this tip.
 
:[[User:JohnBeckett|JohnBeckett]] 10:10, 18 June 2009 (UTC)
 
:[[User:JohnBeckett|JohnBeckett]] 10:10, 18 June 2009 (UTC)
  +
Try it for your self, at least in my w3 compliant html file with embed js, syntax/html doesn't give the correct highlighting but syntax/htmlm4 does. For that reason alone I think this page should stay. A counter intuative and suprising work around, but if it works, it works.

Revision as of 13:28, 12 August 2009

Tip 1193 Printable Monobook Previous Next

created March 31, 2006 · complexity basic · author Anon · version 6.0


Just use the "htmlm4.vim" syntax script. (I got this from VimTip1041, but it was non-obvious to somebody looking for a quick answer.)

Put simply, while in normal mode, type the following:

:set filetype=htmlm4

You can automatically load this syntax for all html files by adding the following line to your vimrc

au BufRead *.html set filetype=htmlm4


Comments

This tip is FALSE. htmlm4 is a filetype for documents which contain both HTML and M4 parts and syntax/htmlm4.vim just combine syntax/html.vim and syntax/m4.vim, so that there is no special treatment on embedded CSS/javascript in syntax/htmlm4.vim. Such treatment is a part of syntax/html.vim. So that this tip is false. You don't have to do the above configuration.

Thanks, but please spell out what you think we on the wiki should do (assuming I don't want to take the time to figure it all out). Are you saying:
  1. The title of the tip is "Syntax highlighting for HTML with embedded Javascript".
  2. You automatically get that functionality (assuming say Vim 7) if filetype is html.
  3. So there is nothing in this tip that is worth keeping.
  4. We should delete this tip.
JohnBeckett 10:10, 18 June 2009 (UTC)

Try it for your self, at least in my w3 compliant html file with embed js, syntax/html doesn't give the correct highlighting but syntax/htmlm4 does. For that reason alone I think this page should stay. A counter intuative and suprising work around, but if it works, it works.