Visual Studio Language Service with C# intellisense - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:55:07Z http://stackoverflow.com/feeds/question/739483 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/739483/visual-studio-language-service-with-c-intellisense 7 Visual Studio Language Service with C# intellisense Dave Newman 2009-04-11T03:55:12Z 2009-06-20T22:45:29Z <p>Last year I wrote a Language Service for Visual Studio which added syntax highlighting for NHaml files: <a href="http://github.com/snappycode/hamleditor" rel="nofollow">http://github.com/snappycode/hamleditor</a>.</p> <p>To clarify, NHaml is a html template language that can mix in code elements like an aspx file can. This plugin adds support to the IDE for editing NHaml files, but basically only adds syntax highlighting.</p> <p>I was wondering if anyone knows how to add inline c# intellisense to the service like you get now in an aspx file. I'm hoping that would be possible without doing the whole c# grammar myself specific for the plugin.</p> <p>Has anyone written a language service that mixes languages?</p> <p>UPDATE: It looks like the spark view engine guys have made some inroads here, I am investigating their implementation</p> http://stackoverflow.com/questions/739483/visual-studio-language-service-with-c-intellisense/742403#742403 0 Answer by Ofek Shilon for Visual Studio Language Service with C# intellisense Ofek Shilon 2009-04-12T20:50:10Z 2009-04-12T20:50:10Z <p>You can easily <a href="http://msdn.microsoft.com/en-us/library/zy61y8b8%28VS.80%29.aspx" rel="nofollow">add keywords</a> by creating or modifying a usertype.dat file. Check <a href="http://codebetter.com/blogs/darrell.norton/archive/2004/04/21/11837.aspx" rel="nofollow">here</a> for some directions on attaching to specific file extentions. That might get you at least part of the way, without redoing the complete c# syntax.</p> <p>(In fact, I'm not sure what you mean exactly by 'syntax highlighting' in this context. I'm sure, for instance, you get brace-match highlighting for free in the editor).</p> http://stackoverflow.com/questions/739483/visual-studio-language-service-with-c-intellisense/758766#758766 1 Answer by Simon for Visual Studio Language Service with C# intellisense Simon 2009-04-17T02:28:38Z 2009-04-17T02:28:38Z <p>this looks like it might help</p> <p><a href="http://www.codeproject.com/KB/recipes/VSLanguageService.aspx" rel="nofollow">http://www.codeproject.com/KB/recipes/VSLanguageService.aspx</a></p> http://stackoverflow.com/questions/739483/visual-studio-language-service-with-c-intellisense/1022733#1022733 1 Answer by SztupY for Visual Studio Language Service with C# intellisense SztupY 2009-06-20T22:45:29Z 2009-06-20T22:45:29Z <p>I checked the Spark View Engine, and they seem to have made a generic ATL stuff (called SparkLanguagePackageLib), that in fact seems to be not containiag anything Spark specific. It seems to be just a generic C# intellisense library that needs the following:</p> <ul> <li>The original code</li> <li>The C# source that gets generated from the original code</li> <li>The position mappings between the two (for example the code on line 2 pos 5 gets mapped in the output to line 4 pos 10, etc.)</li> <li>Some other things, like Paintings(?)</li> </ul> <p>And after that you can call:</p> <pre><code>events.OnGenerated( primaryText, // original source code entry.SourceCode, // generated sourcecode cMappings, // mappings between the two ref mappings[0], // ? cPaints, // ? ref paints[0]); // ? </code></pre> <p>I've tried to find Spark-specific stuff in that C++ library, but I couldn't find anything: everythig spark-related is split to a separate C# code file. I think this is good, because:</p> <ul> <li>You don't need to edit the C++ files</li> <li>If the spark view engine's intellisense support is installed it can be used by other view engines too</li> <li>You only need to create a class, that maps between the original nhaml file and it's generated C# counterpart.</li> </ul> <p>Btw. Are you still working on this NHaml Intellisense library? If not I'll try to patch their implementation in hope it can be converted to NHaml easily.</p>