Syntax highlighting for domain-specific language in VS2008? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T03:42:04Z http://stackoverflow.com/feeds/question/942091 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/942091/syntax-highlighting-for-domain-specific-language-in-vs2008 1 Syntax highlighting for domain-specific language in VS2008? Dervin Thunk 2009-06-02T21:53:02Z 2009-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#942980 1 Answer by Robert Harvey for Syntax highlighting for domain-specific language in VS2008? Robert Harvey 2009-06-03T03:52:38Z 2009-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#945893 2 Answer by Simeon Pilgrim for Syntax highlighting for domain-specific language in VS2008? Simeon Pilgrim 2009-06-03T17:05:56Z 2009-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>