Syntax highlighting for domain-specific language in VS2008? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T03:42:04Zhttp://stackoverflow.com/feeds/question/942091http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/942091/syntax-highlighting-for-domain-specific-language-in-vs20081Syntax highlighting for domain-specific language in VS2008?Dervin Thunk2009-06-02T21:53:02Z2009-06-03T17:05:56Z
<p>Hello. I have a domain-specific language with a certain syntax. Is it possible to make Visual Studio 2008 recognize custom languages in the usual editors? That is, associate a given file extension to a certain syntax-coloring scheme? If so, would you have any pointers as to how to do this?</p>
<p>I'm sorry if this is a duplicate. I searched but couldn't find a relevant answer, and yet it does sound like a simple question.</p>
<p>Regards.</p>
http://stackoverflow.com/questions/942091/syntax-highlighting-for-domain-specific-language-in-vs2008/942980#9429801Answer by Robert Harvey for Syntax highlighting for domain-specific language in VS2008?Robert Harvey2009-06-03T03:52:38Z2009-06-03T04:17:36Z<p>Dervin,</p>
<p>This should help you out:</p>
<p>Implementing Color Syntax Highlighting in Visual Studio 2008:
<br><a href="http://msdn.microsoft.com/en-us/library/bb165041.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb165041.aspx</a></p>
http://stackoverflow.com/questions/942091/syntax-highlighting-for-domain-specific-language-in-vs2008/945893#9458932Answer by Simeon Pilgrim for Syntax highlighting for domain-specific language in VS2008?Simeon Pilgrim2009-06-03T17:05:56Z2009-06-03T17:05:56Z<p>If the <a href="http://msdn.microsoft.com/en-us/library/bb165041.aspx" rel="nofollow">Implementing Color Syntax Highlighting in Visual Studio 2008</a> seems like the deep end, you can download the Lua Lang Pack <a href="http://luaforge.net/projects/lualangpack/" rel="nofollow">http://luaforge.net/projects/lualangpack/</a> and see how they do it. </p>
<p>They use the <a href="http://cis.paisley.ac.uk/crow-ci0/" rel="nofollow">Compiler Tools in C#</a> which are quite neat. </p>
<p>Failing that you can download my prototype <a href="http://code.google.com/p/vs-erlang/" rel="nofollow">Erlang VS plugin</a> that currently only has simple syntax highlighting, but is based on all the above.</p>