show/hide this revision's text 3 added 122 characters in body

Last year I wrote a Language Service for Visual Studio which added syntax highlighting for NHaml files: http://github.com/snappycode/hamleditor.

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.

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.

Has anyone written a language service that mixes languages?

UPDATE: It looks like the spark view engine guys have made some inroads here, I am investigating their implementation

show/hide this revision's text 2 Clarified my question

Last year I wrote a Language Service for Visual Studio which added syntax highlighting for NHaml files: http://github.com/snappycode/hamleditor.

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.

I was wondering if it would be easy anyone knows how to add inline c# syntax highlighting intellisense to the service like you get now in an aspx file, or . I'm hoping that would you need to do be possible without doing the whole c# grammar again myself specific for it to workthe plugin.

Has anyone written a language service that mixes languages?

show/hide this revision's text 1

Visual Studio Language Service with C# intellisense

Last year I wrote a Language Service for Visual Studio which added syntax highlighting for NHaml files: http://github.com/snappycode/hamleditor

I was wondering if it would be easy to add inline c# syntax highlighting to the service like you get now in an aspx file, or would you need to do the whole c# grammar again for it to work?