views:

71

answers:

2

Hello.

I need to write a visual studio 2005+ addin for custom coloring of some file format (for example, i need to highlight all words "test" in files that has ".test" extension). Is it any good tutorials available? MSDN help is very general and huge :(. Preferable language is C#, but VB or C++ will do too :).

A: 

You will need to write a language service, which is part of VSX (Visual Studio Extensibility)

Shay Erlichmen
+1  A: 

This question might help:

Custom syntax highlighting for VS 2008

They talk about building on top of DxCore, which is the base that CodeRush is built on.

Adam Neal
What's even better is the fact that DXCore is free.
Miha Markic