Vim:embedded syntax highligting - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T21:23:16Zhttp://stackoverflow.com/feeds/question/519753http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/519753/vimembedded-syntax-highligting2Vim:embedded syntax highligtingstatictype.org2009-02-06T10:04:42Z2009-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><Root>
<Sql> select * from foo </Sql>
<MoreJunk> ... </MoreJunk>
<Python><![CDATA[
def Bar(*args):
return False
]]></Python>
</Root>
</code></pre>
<p>How can I get vim to use sql syntax highlighting for the text inside <code><Sql></code> tags and use python higlighting for text inside <code><Python></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#5197680Answer by Simon Jensen for Vim:embedded syntax highligtingSimon Jensen2009-02-06T10:11:17Z2009-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#5198383Answer by f3lix for Vim:embedded syntax highligtingf3lix2009-02-06T10:44:39Z2009-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=+<Python>+ keepend end=+/</Python>+ 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>