Vim:embedded syntax highligting - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T21:23:16Z http://stackoverflow.com/feeds/question/519753 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/519753/vimembedded-syntax-highligting 2 Vim:embedded syntax highligting statictype.org 2009-02-06T10:04:42Z 2009-02-06T10:45:28Z <p>I have a custom xml file format which can contain blocks of code within certain tags.</p> <p>For example:</p> <pre><code>&lt;Root&gt; &lt;Sql&gt; select * from foo &lt;/Sql&gt; &lt;MoreJunk&gt; ... &lt;/MoreJunk&gt; &lt;Python&gt;&lt;![CDATA[ def Bar(*args): return False ]]&gt;&lt;/Python&gt; &lt;/Root&gt; </code></pre> <p>How can I get vim to use sql syntax highlighting for the text inside <code>&lt;Sql&gt;</code> tags and use python higlighting for text inside <code>&lt;Python&gt;</code> tags?</p> <p>I know Vim can already do this because it correctly highlights javascript inside html files.</p> <p>I tried inspecting the html syntax file but couldn't really figure it out.</p> http://stackoverflow.com/questions/519753/vimembedded-syntax-highligting/519768#519768 0 Answer by Simon Jensen for Vim:embedded syntax highligting Simon Jensen 2009-02-06T10:11:17Z 2009-02-06T10:11:17Z <p>This <a href="http://www.vim.org/htmldoc/usr_44.html" rel="nofollow">document</a> describes how to write your own syntax highlighting. You should probably be able to figure out how the HTML-syntax highlighting works with javascript, with that as a reference.</p> http://stackoverflow.com/questions/519753/vimembedded-syntax-highligting/519838#519838 3 Answer by f3lix for Vim:embedded syntax highligting f3lix 2009-02-06T10:44:39Z 2009-02-06T10:44:39Z <p>For your XML with python example you would have to do something like this:</p> <pre><code>runtime! syntax/xml.vim unlet b:current_syntax syntax include @Python syntax/python.vim syntax region pythonCode start=+&lt;Python&gt;+ keepend end=+/&lt;/Python&gt;+ contains=@Python </code></pre> <p>These lines will include the XML syntax and the python syntax, and the specify a python region where VIM will use the python syntax instead of the XML syntax...</p> <p>Of course, all this is well documented in VIM. See <em>:he :syn-include</em> on how to include syntax files.</p>