1

I want to customize the way the text is rendered in Microsoft's Visual Studio text viewer. The goal is to implement my own complicated algorithm for whitespace handling.

Note: I've already written "add-ins" to automate some tasks (include guards, copyright insertion in the file's header etc...). However, as far as I understand, "add-ins" cannot be used to override the kind of functionality I need.

Is it possible to override the default text rendering? If yes, where do I start?

(Visual studio 2005 is preferred.)

Peter O.
  • 30,765
  • 14
  • 76
  • 91
Yakov Galka
  • 66,221
  • 15
  • 132
  • 206

1 Answers1

2

You should look at Visual Studio language services. Try Language Services on MSDN

Victor
  • 5,142
  • 4
  • 12
  • 29
Chris Spicer
  • 2,104
  • 1
  • 12
  • 22